[docs]classRichBlockSlideshow(RichBlock):""" A slideshow, corresponding to the custom HTML tag :code:`<tg-slideshow>`. Source: https://core.telegram.org/bots/api#richblockslideshow """type:Literal[RichBlockType.SLIDESHOW]=RichBlockType.SLIDESHOW"""Type of the block, always 'slideshow'"""blocks:list[RichBlockUnion]"""Elements of the slideshow"""caption:RichBlockCaption|None=None"""*Optional*. Caption of the block"""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,type:Literal[RichBlockType.SLIDESHOW]=RichBlockType.SLIDESHOW,blocks:list[RichBlockUnion],caption:RichBlockCaption|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__(type=type,blocks=blocks,caption=caption,**__pydantic_kwargs)