Name |
Type |
Description |
Notes |
member_id |
int |
|
|
start_time |
datetime |
|
|
end_time |
datetime |
|
|
backend_type_id |
int |
|
|
from compute_api_client.models.reservation_in import ReservationIn
# TODO update the JSON string below
json = "{}"
# create an instance of ReservationIn from a JSON string
reservation_in_instance = ReservationIn.from_json(json)
# print the JSON string representation of the object
print ReservationIn.to_json()
# convert the object into a dict
reservation_in_dict = reservation_in_instance.to_dict()
# create an instance of ReservationIn from a dict
reservation_in_form_dict = reservation_in.from_dict(reservation_in_dict)
[Back to Model list] [Back to API list] [Back to README]