Skip to content

PageAnnotation

Properties

NameTypeDescriptionNotes
itemsList[Annotation]
totalint
pageint
sizeint
pagesint[optional]

Example

python
from syntheticusers.models.page_annotation import PageAnnotation

# TODO update the JSON string below
json = "{}"
# create an instance of PageAnnotation from a JSON string
page_annotation_instance = PageAnnotation.from_json(json)
# print the JSON string representation of the object
print(PageAnnotation.to_json())

# convert the object into a dict
page_annotation_dict = page_annotation_instance.to_dict()
# create an instance of PageAnnotation from a dict
page_annotation_from_dict = PageAnnotation.from_dict(page_annotation_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.