Interface AddedReactions

Represents a list of reactions added to a message.

interface AddedReactions {
    @type: "addedReactions";
    next_offset: string;
    reactions: AddedReaction[];
    total_count: number;
}

Properties

@type: "addedReactions"
next_offset: string

The offset for the next request. If empty, then there are no more results.

reactions: AddedReaction[]

The list of added reactions.

total_count: number

The total number of found reactions.