Interface GiftCollection

Describes collection of gifts.

interface GiftCollection {
    @type: "giftCollection";
    gift_count: number;
    icon: Sticker;
    id: number;
    name: string;
}

Properties

@type: "giftCollection"
gift_count: number

Total number of gifts in the collection.

icon: Sticker

Icon of the collection; may be null if none.

id: number

Unique identifier of the collection.

name: string

Name of the collection.