Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.42 KB

UpdateDeliveryHourResponse.md

File metadata and controls

33 lines (24 loc) · 1.42 KB

UpdateDeliveryHourResponse

Object contain update store delivery hour response

Properties

Name Type Description Notes
error_reasons List[str] Error message when updating store delivery hour. `null` indicates no error. [optional]
order_count int Total active order for the day.
scheduled_order_count int Total scheduled order during store close period.
close_immediately bool Indicate the store status after updating delivery hours.

Example

from grabfood.models.update_delivery_hour_response import UpdateDeliveryHourResponse

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

# convert the object into a dict
update_delivery_hour_response_dict = update_delivery_hour_response_instance.to_dict()
# create an instance of UpdateDeliveryHourResponse from a dict
update_delivery_hour_response_from_dict = UpdateDeliveryHourResponse.from_dict(update_delivery_hour_response_dict)

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