Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 901 Bytes

File metadata and controls

30 lines (21 loc) · 901 Bytes

LabelTarget

Properties

Name Type Description Notes
type str
audience AudienceReference

Example

from talon_one.models.label_target import LabelTarget

# TODO update the JSON string below
json = "{}"
# create an instance of LabelTarget from a JSON string
label_target_instance = LabelTarget.from_json(json)
# print the JSON string representation of the object
print(LabelTarget.to_json())

# convert the object into a dict
label_target_dict = label_target_instance.to_dict()
# create an instance of LabelTarget from a dict
label_target_from_dict = LabelTarget.from_dict(label_target_dict)

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