Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 980 Bytes

PageBackend.md

File metadata and controls

32 lines (24 loc) · 980 Bytes

PageBackend

Properties

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

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_form_dict = page_backend.from_dict(page_backend_dict)

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