Skip to content

AudienceCreate

Properties

NameTypeDescriptionNotes
titlestr[optional]
descriptionstr[optional]
project_idstr

Example

python
from syntheticusers.models.audience_create import AudienceCreate

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

# convert the object into a dict
audience_create_dict = audience_create_instance.to_dict()
# create an instance of AudienceCreate from a dict
audience_create_from_dict = AudienceCreate.from_dict(audience_create_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.