Appearance
PageAudience
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| items | List[Audience] | ||
| total | int | ||
| page | int | ||
| size | int | ||
| pages | int | [optional] |
Example
python
from syntheticusers.models.page_audience import PageAudience
# TODO update the JSON string below
json = "{}"
# create an instance of PageAudience from a JSON string
page_audience_instance = PageAudience.from_json(json)
# print the JSON string representation of the object
print(PageAudience.to_json())
# convert the object into a dict
page_audience_dict = page_audience_instance.to_dict()
# create an instance of PageAudience from a dict
page_audience_from_dict = PageAudience.from_dict(page_audience_dict)