Appearance
AudienceCreate
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| title | str | [optional] | |
| description | str | [optional] | |
| project_id | str |
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)