Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 947 Bytes

File metadata and controls

30 lines (21 loc) · 947 Bytes

LabelTargetNone

Represents the target type when no entity is selected.

Properties

Name Type Description Notes
type str

Example

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)

[Back to Model list] [Back to API list] [Back to README]