Information about the GrabFood client updating their food menu.
Name | Type | Description | Notes |
---|---|---|---|
merchant_id | str | The merchant's ID that is in GrabFood's database. | |
var_field | str | The record type that you want to update. | |
menu_entities | List[MenuEntity] | The items in an array of JSON Object. | [optional] |
from grabfood.models.batch_update_menu_item import BatchUpdateMenuItem
# TODO update the JSON string below
json = "{}"
# create an instance of BatchUpdateMenuItem from a JSON string
batch_update_menu_item_instance = BatchUpdateMenuItem.from_json(json)
# print the JSON string representation of the object
print(BatchUpdateMenuItem.to_json())
# convert the object into a dict
batch_update_menu_item_dict = batch_update_menu_item_instance.to_dict()
# create an instance of BatchUpdateMenuItem from a dict
batch_update_menu_item_from_dict = BatchUpdateMenuItem.from_dict(batch_update_menu_item_dict)