Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.01 KB

File metadata and controls

33 lines (24 loc) · 1.01 KB

PageReservation

Properties

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

Example

from compute_api_client.models.page_reservation import PageReservation

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

# convert the object into a dict
page_reservation_dict = page_reservation_instance.to_dict()
# create an instance of PageReservation from a dict
page_reservation_from_dict = PageReservation.from_dict(page_reservation_dict)

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