Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.3 KB

WorkingHour.md

File metadata and controls

36 lines (27 loc) · 1.3 KB

WorkingHour

A JSON object that describes the workingHour for each day.

Properties

Name Type Description Notes
sun WorkingHourDay [optional]
mon WorkingHourDay [optional]
tue WorkingHourDay [optional]
wed WorkingHourDay [optional]
thu WorkingHourDay [optional]
fri WorkingHourDay [optional]
sat WorkingHourDay [optional]

Example

from grabfood.models.working_hour import WorkingHour

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

# convert the object into a dict
working_hour_dict = working_hour_instance.to_dict()
# create an instance of WorkingHour from a dict
working_hour_from_dict = WorkingHour.from_dict(working_hour_dict)

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