Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.13 KB

LimitOffsetPageTokenSchema.md

File metadata and controls

32 lines (23 loc) · 1.13 KB

LimitOffsetPageTokenSchema

Properties

Name Type Description Notes
items List[TokenSchema]
total int
limit int
offset int

Example

from anchio.models.limit_offset_page_token_schema import LimitOffsetPageTokenSchema

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

# convert the object into a dict
limit_offset_page_token_schema_dict = limit_offset_page_token_schema_instance.to_dict()
# create an instance of LimitOffsetPageTokenSchema from a dict
limit_offset_page_token_schema_form_dict = limit_offset_page_token_schema.from_dict(limit_offset_page_token_schema_dict)

[Back to Model list] [Back to API list] [Back to README]