Name |
Type |
Description |
Notes |
code |
CancelCode |
|
[optional] |
reason |
str |
The detailed cancel reason for the specific cancel code. - Items are unavailable <code 1001> - I have too many orders now <code 1002> - My shop is closed <code 1003> - My shop is closing soon <code 1004> |
[optional] |
from grabfood.models.cancel_reason import CancelReason
# TODO update the JSON string below
json = "{}"
# create an instance of CancelReason from a JSON string
cancel_reason_instance = CancelReason.from_json(json)
# print the JSON string representation of the object
print(CancelReason.to_json())
# convert the object into a dict
cancel_reason_dict = cancel_reason_instance.to_dict()
# create an instance of CancelReason from a dict
cancel_reason_from_dict = CancelReason.from_dict(cancel_reason_dict)
[Back to Model list] [Back to API list] [Back to README]