CreateOrderErrorResponse
Properties
| Name |
Type |
Description |
Notes |
| error_code |
int |
|
[optional] |
| error_message |
str |
|
[optional] |
| fields |
List[OrderFieldResponse] |
|
[optional] |
Example
from click_and_drop_api.models.create_order_error_response import CreateOrderErrorResponse
# TODO update the JSON string below
json = "{}"
# create an instance of CreateOrderErrorResponse from a JSON string
create_order_error_response_instance = CreateOrderErrorResponse.from_json(json)
# print the JSON string representation of the object
print(CreateOrderErrorResponse.to_json())
# convert the object into a dict
create_order_error_response_dict = create_order_error_response_instance.to_dict()
# create an instance of CreateOrderErrorResponse from a dict
create_order_error_response_from_dict = CreateOrderErrorResponse.from_dict(create_order_error_response_dict)
[Back to Model list] [Back to API list] [Back to README]