Interface MessageReplyInfo

Contains information about replies to a message.

interface MessageReplyInfo {
    @type: "messageReplyInfo";
    last_message_id: number;
    last_read_inbox_message_id: number;
    last_read_outbox_message_id: number;
    recent_replier_ids: MessageSender[];
    reply_count: number;
}

Properties

@type: "messageReplyInfo"
last_message_id: number

Identifier of the last reply to the message.

last_read_inbox_message_id: number

Identifier of the last read incoming reply to the message.

last_read_outbox_message_id: number

Identifier of the last read outgoing reply to the message.

recent_replier_ids: MessageSender[]

Identifiers of at most 3 recent repliers to the message; available in channels with a discussion supergroup. The users and chats are expected to be inaccessible: only their photo and name will be available.

reply_count: number

Number of times the message was directly or indirectly replied.