Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 983 Bytes

OpenPeriod.md

File metadata and controls

30 lines (21 loc) · 983 Bytes

OpenPeriod

Properties

Name Type Description Notes
start_time str The open start time in 24h format. Local time format is expected.
end_time str The open end time in 24h format. Local time format is expected.

Example

from grabfood.models.open_period import OpenPeriod

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

# convert the object into a dict
open_period_dict = open_period_instance.to_dict()
# create an instance of OpenPeriod from a dict
open_period_from_dict = OpenPeriod.from_dict(open_period_dict)

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