Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1010 Bytes

PageAlgorithm.md

File metadata and controls

32 lines (24 loc) · 1010 Bytes

PageAlgorithm

Properties

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

Example

from compute_api_client.models.page_algorithm import PageAlgorithm

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

# convert the object into a dict
page_algorithm_dict = page_algorithm_instance.to_dict()
# create an instance of PageAlgorithm from a dict
page_algorithm_form_dict = page_algorithm.from_dict(page_algorithm_dict)

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