[docs]classRichTextDateTime(RichText):""" Formatted date and time. Source: https://core.telegram.org/bots/api#richtextdatetime """type:Literal[RichTextType.DATE_TIME]=RichTextType.DATE_TIME"""Type of the rich text, always 'date_time'"""text:RichTextUnion"""The text"""unix_time:int"""The Unix time associated with the entity"""date_time_format:str"""The string that defines the formatting of the date and time. See `date-time entity formatting <https://core.telegram.org/bots/api#date-time-entity-formatting>`_ for more details"""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,type:Literal[RichTextType.DATE_TIME]=RichTextType.DATE_TIME,text:RichTextUnion,unix_time:int,date_time_format:str,**__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,text=text,unix_time=unix_time,date_time_format=date_time_format,**__pydantic_kwargs,)