You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The remaining cancellation quota for the merchant. A value is only returned when the nearest remaining cancellation limit is approaching, else it returns 0.
fromgrabfood.models.check_order_cancelable_responseimportCheckOrderCancelableResponse# TODO update the JSON string belowjson="{}"# create an instance of CheckOrderCancelableResponse from a JSON stringcheck_order_cancelable_response_instance=CheckOrderCancelableResponse.from_json(json)
# print the JSON string representation of the objectprint(CheckOrderCancelableResponse.to_json())
# convert the object into a dictcheck_order_cancelable_response_dict=check_order_cancelable_response_instance.to_dict()
# create an instance of CheckOrderCancelableResponse from a dictcheck_order_cancelable_response_from_dict=CheckOrderCancelableResponse.from_dict(check_order_cancelable_response_dict)