[docs]classBusinessIntro(TelegramObject):""" Contains information about the start page settings of a Telegram Business account. Source: https://core.telegram.org/bots/api#businessintro """title:Optional[str]=None"""*Optional*. Title text of the business intro"""message:Optional[str]=None"""*Optional*. Message text of the business intro"""sticker:Optional[Sticker]=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:Optional[str]=None,message:Optional[str]=None,sticker:Optional[Sticker]=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)