Interface TogglePaidMessageReactionIsAnonymous

Changes whether the paid message reaction of the user to a message is anonymous. The message must have paid reaction added by the user. Request type for Tdjson#togglePaidMessageReactionIsAnonymous.

interface TogglePaidMessageReactionIsAnonymous {
    @type: "togglePaidMessageReactionIsAnonymous";
    chat_id: number;
    is_anonymous?: boolean;
    message_id: number;
}

Properties

@type: "togglePaidMessageReactionIsAnonymous"
chat_id: number

Identifier of the chat to which the message belongs.

is_anonymous?: boolean

Pass true to make paid reaction of the user on the message anonymous; pass false to make the user's profile visible among top reactors.

message_id: number

Identifier of the message.