Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.02 KB

File metadata and controls

31 lines (22 loc) · 1.02 KB

LabelTargetAudience

Represents the targeted audience.

Properties

Name Type Description Notes
type str
audience AudienceReference

Example

from talon_one.models.label_target_audience import LabelTargetAudience

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

# convert the object into a dict
label_target_audience_dict = label_target_audience_instance.to_dict()
# create an instance of LabelTargetAudience from a dict
label_target_audience_from_dict = LabelTargetAudience.from_dict(label_target_audience_dict)

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