Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 1.3 KB

GetMenuOldResponse.md

File metadata and controls

33 lines (23 loc) · 1.3 KB

GetMenuOldResponse

Properties

Name Type Description Notes
merchant_id str The merchant's ID that is in GrabFood's database. [optional]
partner_merchant_id str The merchant's ID that is on the partner's database. [optional]
currency Currency
sections List[MenuSection] An array of section JSON objects. Max 7 allowed. Refer to Sections for more information.

Example

from grabfood.models.get_menu_old_response import GetMenuOldResponse

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

# convert the object into a dict
get_menu_old_response_dict = get_menu_old_response_instance.to_dict()
# create an instance of GetMenuOldResponse from a dict
get_menu_old_response_from_dict = GetMenuOldResponse.from_dict(get_menu_old_response_dict)

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