This request marks an order as ready for delivery or completed on GrabFood.
Name | Type | Description | Notes |
---|---|---|---|
order_id | str | The order's ID that is returned from GrabFood. Refer to FAQs for more details about orderID and shortOrderNumber. | |
mark_status | int | The status to be marked accordingly. * `1` - mark order as ready * `2` - mark order as completed and only applicable to dine-in orders |
from grabfood.models.mark_order_request import MarkOrderRequest
# TODO update the JSON string below
json = "{}"
# create an instance of MarkOrderRequest from a JSON string
mark_order_request_instance = MarkOrderRequest.from_json(json)
# print the JSON string representation of the object
print(MarkOrderRequest.to_json())
# convert the object into a dict
mark_order_request_dict = mark_order_request_instance.to_dict()
# create an instance of MarkOrderRequest from a dict
mark_order_request_from_dict = MarkOrderRequest.from_dict(mark_order_request_dict)