Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.34 KB

MarkOrderRequest.md

File metadata and controls

31 lines (22 loc) · 1.34 KB

MarkOrderRequest

This request marks an order as ready for delivery or completed on GrabFood.

Properties

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

Example

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)

[Back to Model list] [Back to API list] [Back to README]