This request notifies GrabFood about the partner's updated food menu.
Name | Type | Description | Notes |
---|---|---|---|
merchant_id | str | The merchant's ID that is in GrabFood's database. |
from grabfood.models.update_menu_notif_request import UpdateMenuNotifRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateMenuNotifRequest from a JSON string
update_menu_notif_request_instance = UpdateMenuNotifRequest.from_json(json)
# print the JSON string representation of the object
print(UpdateMenuNotifRequest.to_json())
# convert the object into a dict
update_menu_notif_request_dict = update_menu_notif_request_instance.to_dict()
# create an instance of UpdateMenuNotifRequest from a dict
update_menu_notif_request_from_dict = UpdateMenuNotifRequest.from_dict(update_menu_notif_request_dict)