Interface UpdateMessageIsPinned

The message pinned state was changed. Subtype of Update.

interface UpdateMessageIsPinned {
    @type: "updateMessageIsPinned";
    chat_id: number;
    is_pinned?: boolean;
    message_id: number;
}

Properties

@type: "updateMessageIsPinned"
chat_id: number

Chat identifier.

is_pinned?: boolean

True, if the message is pinned.

message_id: number

The message identifier.