Skip to content

FailedOrderResponse

Properties

Name Type Description Notes
order CreateOrderRequest [optional]
errors List[CreateOrderErrorResponse] [optional]

Example

from click_and_drop_api.models.failed_order_response import FailedOrderResponse

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

# convert the object into a dict
failed_order_response_dict = failed_order_response_instance.to_dict()
# create an instance of FailedOrderResponse from a dict
failed_order_response_from_dict = FailedOrderResponse.from_dict(failed_order_response_dict)
[Back to Model list] [Back to API list] [Back to README]