Skip to content

PageAudience

Properties

NameTypeDescriptionNotes
itemsList[Audience]
totalint
pageint
sizeint
pagesint[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)

[Back to API list] [Back to SDK]

Released under the MIT License.