Interface MessageOriginChannel

The message was originally sent to a channel chat.

interface MessageOriginChannel {
    author_signature?: string;
    chat: Telegram.Chat.ChannelChat;
    date: number;
    message_id: number;
    type: "channel";
}

Properties

author_signature?: string

Signature of the original post author

Channel chat to which the message was originally sent

date: number

Date the message was sent originally in Unix time

message_id: number

Unique message identifier inside the chat

type: "channel"

Type of the message origin, always “channel”