Skip to content

Audience

Properties

NameTypeDescriptionNotes
idstr
titlestr
descriptionstr
project_idstr
deletedbool
created_atdatetime

Example

python
from syntheticusers.models.audience import Audience

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

# convert the object into a dict
audience_dict = audience_instance.to_dict()
# create an instance of Audience from a dict
audience_from_dict = Audience.from_dict(audience_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.