Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.69 KB

SelfServiceReservationResponse.md

File metadata and controls

40 lines (31 loc) · 1.69 KB

SelfServiceReservationResponse

Properties

Name Type Description Notes
created_at datetime [optional]
href str [optional]
item List[SelfServiceReservationItemResponse] [optional]
notes str [optional]
organization str [optional]
organization_id str [optional]
period CreateSelfServiceReservationRequestPeriod [optional]
project str [optional]
project_id str [optional]
start_date datetime [optional]
status str [optional]
total_cost int [optional]

Example

from equinix_metal.models.self_service_reservation_response import SelfServiceReservationResponse

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

# convert the object into a dict
self_service_reservation_response_dict = self_service_reservation_response_instance.to_dict()
# create an instance of SelfServiceReservationResponse from a dict
self_service_reservation_response_form_dict = self_service_reservation_response.from_dict(self_service_reservation_response_dict)

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