Represents the target type when no entity is selected.
| Name | Type | Description | Notes |
|---|---|---|---|
| type | str |
from talon_one.models.label_target_none import LabelTargetNone
# TODO update the JSON string below
json = "{}"
# create an instance of LabelTargetNone from a JSON string
label_target_none_instance = LabelTargetNone.from_json(json)
# print the JSON string representation of the object
print(LabelTargetNone.to_json())
# convert the object into a dict
label_target_none_dict = label_target_none_instance.to_dict()
# create an instance of LabelTargetNone from a dict
label_target_none_from_dict = LabelTargetNone.from_dict(label_target_none_dict)