Interface ChatBoostSlot

Describes a slot for chat boost.

interface ChatBoostSlot {
    @type: "chatBoostSlot";
    cooldown_until_date: number;
    currently_boosted_chat_id: number;
    expiration_date: number;
    slot_id: number;
    start_date: number;
}

Properties

@type: "chatBoostSlot"
cooldown_until_date: number

Point in time (Unix timestamp) after which the boost can be used for another chat.

currently_boosted_chat_id: number

Identifier of the currently boosted chat; 0 if none.

expiration_date: number

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

slot_id: number

Unique identifier of the slot.

start_date: number

Point in time (Unix timestamp) when the chat was boosted; 0 if none.