Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 965 Bytes

PageResult.md

File metadata and controls

32 lines (24 loc) · 965 Bytes

PageResult

Properties

Name Type Description Notes
items List[Result]
total int
page int
size int
pages int [optional]

Example

from compute_api_client.models.page_result import PageResult

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

# convert the object into a dict
page_result_dict = page_result_instance.to_dict()
# create an instance of PageResult from a dict
page_result_form_dict = page_result.from_dict(page_result_dict)

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