Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.11 KB

SpecialOpeningHourMetadata.md

File metadata and controls

30 lines (21 loc) · 1.11 KB

SpecialOpeningHourMetadata

Contains special opening hour info.

Properties

Name Type Description Notes
description str Description of the special opening hour. [optional]

Example

from grabfood.models.special_opening_hour_metadata import SpecialOpeningHourMetadata

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

# convert the object into a dict
special_opening_hour_metadata_dict = special_opening_hour_metadata_instance.to_dict()
# create an instance of SpecialOpeningHourMetadata from a dict
special_opening_hour_metadata_from_dict = SpecialOpeningHourMetadata.from_dict(special_opening_hour_metadata_dict)

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