Skip to content

CreateOrderResponse

Properties

Name Type Description Notes
order_identifier int
order_reference str [optional]
created_on datetime
order_date datetime [optional]
printed_on datetime [optional]
manifested_on datetime [optional]
shipped_on datetime [optional]
tracking_number str [optional]
packages List[CreatePackagesResponse] [optional]
label str label in format base64 string [optional]
label_errors List[CreateOrderLabelErrorResponse] [optional]
generated_documents List[str] [optional]

Example

from click_and_drop_api.models.create_order_response import CreateOrderResponse

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

# convert the object into a dict
create_order_response_dict = create_order_response_instance.to_dict()
# create an instance of CreateOrderResponse from a dict
create_order_response_from_dict = CreateOrderResponse.from_dict(create_order_response_dict)
[Back to Model list] [Back to API list] [Back to README]