Contains special opening hour info.
Name | Type | Description | Notes |
---|---|---|---|
description | str | Description of the special opening hour. | [optional] |
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)