Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.3 KB

NewOrderTimeRequest.md

File metadata and controls

31 lines (22 loc) · 1.3 KB

NewOrderTimeRequest

This request updates an order with a new ready time 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.
new_order_ready_time datetime The new order ready time for this order, based on ISO_8601/RFC3339.

Example

from grabfood.models.new_order_time_request import NewOrderTimeRequest

# TODO update the JSON string below
json = "{}"
# create an instance of NewOrderTimeRequest from a JSON string
new_order_time_request_instance = NewOrderTimeRequest.from_json(json)
# print the JSON string representation of the object
print(NewOrderTimeRequest.to_json())

# convert the object into a dict
new_order_time_request_dict = new_order_time_request_instance.to_dict()
# create an instance of NewOrderTimeRequest from a dict
new_order_time_request_from_dict = NewOrderTimeRequest.from_dict(new_order_time_request_dict)

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