Appearance
PageAnnotation
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| items | List[Annotation] | ||
| total | int | ||
| page | int | ||
| size | int | ||
| pages | int | [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)