Appearance
AudienceUpdate
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| title | str | [optional] | |
| description | str | [optional] |
Example
python
from syntheticusers.models.audience_update import AudienceUpdate
# TODO update the JSON string below
json = "{}"
# create an instance of AudienceUpdate from a JSON string
audience_update_instance = AudienceUpdate.from_json(json)
# print the JSON string representation of the object
print(AudienceUpdate.to_json())
# convert the object into a dict
audience_update_dict = audience_update_instance.to_dict()
# create an instance of AudienceUpdate from a dict
audience_update_from_dict = AudienceUpdate.from_dict(audience_update_dict)