Interface FoundChatBoosts

Contains a list of boosts applied to a chat.

interface FoundChatBoosts {
    @type: "foundChatBoosts";
    boosts: ChatBoost[];
    next_offset: string;
    total_count: number;
}

Properties

@type: "foundChatBoosts"
boosts: ChatBoost[]

List of boosts.

next_offset: string

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

total_count: number

Total number of boosts applied to the chat.