Interface PaidReactor

Contains information about a user that added paid reactions.

interface PaidReactor {
    @type: "paidReactor";
    is_anonymous?: boolean;
    is_me?: boolean;
    is_top?: boolean;
    sender_id: MessageSender;
    star_count: number;
}

Properties

@type: "paidReactor"
is_anonymous?: boolean

True, if the reactor is anonymous.

is_me?: boolean

True, if the paid reaction was added by the current user.

is_top?: boolean

True, if the reactor is one of the most active reactors; may be false if the reactor is the current user.

sender_id: MessageSender

Identifier of the user or chat that added the reactions; may be null for anonymous reactors that aren't the current user.

star_count: number

Number of Telegram Stars added.