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. |
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)