[docs]classBusinessIntro(TelegramObject):""" Contains information about the start page settings of a Telegram Business account. Source: https://core.telegram.org/bots/api#businessintro """title:str|None=None"""*Optional*. Title text of the business intro"""message:str|None=None"""*Optional*. Message text of the business intro"""sticker:Sticker|None=None"""*Optional*. Sticker of the business intro"""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,title:str|None=None,message:str|None=None,sticker:Sticker|None=None,**__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__(title=title,message=message,sticker=sticker,**__pydantic_kwargs)