Interface MessageOriginChannel

The message was originally a post in a channel. Subtype of MessageOrigin.

interface MessageOriginChannel {
    @type: "messageOriginChannel";
    author_signature: string;
    chat_id: number;
    message_id: number;
}

Properties

@type: "messageOriginChannel"
author_signature: string

Original post author signature.

chat_id: number

Identifier of the channel chat to which the message was originally sent.

message_id: number

Message identifier of the original message.