Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.54 KB

File metadata and controls

34 lines (25 loc) · 1.54 KB

AgencyHostingV1OrdersOrderResource

Properties

Name Type Description Notes
id int Order ID [optional]
client_id int Order client ID [optional]
status str Order status [optional]
plan AgencyHostingV1OrdersPlanResource [optional]
datacenter AgencyHostingV1OrdersDatacenterResource [optional]
created_at datetime Order creation date [optional]

Example

from hostinger_api.models.agency_hosting_v1_orders_order_resource import AgencyHostingV1OrdersOrderResource

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

# convert the object into a dict
agency_hosting_v1_orders_order_resource_dict = agency_hosting_v1_orders_order_resource_instance.to_dict()
# create an instance of AgencyHostingV1OrdersOrderResource from a dict
agency_hosting_v1_orders_order_resource_from_dict = AgencyHostingV1OrdersOrderResource.from_dict(agency_hosting_v1_orders_order_resource_dict)

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