Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.03 KB

DineIn.md

File metadata and controls

31 lines (22 loc) · 1.03 KB

DineIn

A JSON object containing order at table information. Only applicable for dine-in order. null if not applicable. Not present in ListOrder response.

Properties

Name Type Description Notes
table_id str Table number. [optional]
eater_count int The number of eaters. [optional]

Example

from grabfood.models.dine_in import DineIn

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

# convert the object into a dict
dine_in_dict = dine_in_instance.to_dict()
# create an instance of DineIn from a dict
dine_in_from_dict = DineIn.from_dict(dine_in_dict)

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