Skip to content

OrderErrorInfo

Properties

Name Type Description Notes
order_identifier int [optional]
order_reference str [optional]
code str [optional]
message str [optional]

Example

from click_and_drop_api.models.order_error_info import OrderErrorInfo

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

# convert the object into a dict
order_error_info_dict = order_error_info_instance.to_dict()
# create an instance of OrderErrorInfo from a dict
order_error_info_from_dict = OrderErrorInfo.from_dict(order_error_info_dict)
[Back to Model list] [Back to API list] [Back to README]