Interface ChatBoost

Describes a boost applied to a chat.

interface ChatBoost {
    @type: "chatBoost";
    count: number;
    expiration_date: number;
    id: string;
    source: ChatBoostSource;
    start_date: number;
}

Properties

@type: "chatBoost"
count: number

The number of identical boosts applied.

expiration_date: number

Point in time (Unix timestamp) when the boost will expire.

id: string

Unique identifier of the boost.

Source of the boost.

start_date: number

Point in time (Unix timestamp) when the chat was boosted.