[docs]classMessageOriginChannel(MessageOrigin):""" The message was originally sent to a channel chat. Source: https://core.telegram.org/bots/api#messageoriginchannel """type:Literal[MessageOriginType.CHANNEL]=MessageOriginType.CHANNEL"""Type of the message origin, always 'channel'"""date:DateTime"""Date the message was sent originally in Unix time"""chat:Chat"""Channel chat to which the message was originally sent"""message_id:int"""Unique message identifier inside the chat"""author_signature:Optional[str]=None"""*Optional*. Signature of the original post author"""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,type:Literal[MessageOriginType.CHANNEL]=MessageOriginType.CHANNEL,date:DateTime,chat:Chat,message_id:int,author_signature:Optional[str]=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,date=date,chat=chat,message_id=message_id,author_signature=author_signature,**__pydantic_kwargs,)