Appearance
Audience
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| title | str | ||
| description | str | ||
| project_id | str | ||
| deleted | bool | ||
| created_at | datetime |
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)