Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.21 KB

StoreStatusResponse.md

File metadata and controls

32 lines (23 loc) · 1.21 KB

StoreStatusResponse

Object contains store status info

Properties

Name Type Description Notes
close_reason str The code of store close reason. Blank indicates store is currently open.
is_in_special_opening_hour_range bool Indicate whether the store is in special opening hour range.
is_open bool Indicate whether the store is open.

Example

from grabfood.models.store_status_response import StoreStatusResponse

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

# convert the object into a dict
store_status_response_dict = store_status_response_instance.to_dict()
# create an instance of StoreStatusResponse from a dict
store_status_response_from_dict = StoreStatusResponse.from_dict(store_status_response_dict)

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