BatchUpdateMenuResponse
Name |
Type |
Description |
Notes |
merchant_id |
str |
The merchant's ID that is in GrabFood's database. |
[optional] |
status |
str |
The status of this request. |
[optional] |
errors |
List[MenuEntityError] |
The error messages when batch update menu record was partial success/fail. `null` when the request was success. |
[optional] |
from grabfood.models.batch_update_menu_response import BatchUpdateMenuResponse
# TODO update the JSON string below
json = "{}"
# create an instance of BatchUpdateMenuResponse from a JSON string
batch_update_menu_response_instance = BatchUpdateMenuResponse.from_json(json)
# print the JSON string representation of the object
print(BatchUpdateMenuResponse.to_json())
# convert the object into a dict
batch_update_menu_response_dict = batch_update_menu_response_instance.to_dict()
# create an instance of BatchUpdateMenuResponse from a dict
batch_update_menu_response_from_dict = BatchUpdateMenuResponse.from_dict(batch_update_menu_response_dict)
[Back to Model list] [Back to API list] [Back to README]