[docs]classBusinessOpeningHours(TelegramObject):""" Describes the opening hours of a business. Source: https://core.telegram.org/bots/api#businessopeninghours """time_zone_name:str"""Unique name of the time zone for which the opening hours are defined"""opening_hours:list[BusinessOpeningHoursInterval]"""List of time intervals describing business opening hours"""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,time_zone_name:str,opening_hours:list[BusinessOpeningHoursInterval],**__pydantic_kwargs:Any,)->None:# DO NOT EDIT MANUALLY!!!# This method was auto-generated via `butcher`# Is needed only for type checking and IDE support without any additional pluginssuper().__init__(time_zone_name=time_zone_name,opening_hours=opening_hours,**__pydantic_kwargs)