Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 970 Bytes

File metadata and controls

33 lines (24 loc) · 970 Bytes

PageBackend

Properties

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

Example

from compute_api_client.models.page_backend import PageBackend

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

# convert the object into a dict
page_backend_dict = page_backend_instance.to_dict()
# create an instance of PageBackend from a dict
page_backend_from_dict = PageBackend.from_dict(page_backend_dict)

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