Interface GiftsForResale

Describes gifts available for resale.

interface GiftsForResale {
    @type: "giftsForResale";
    backdrops: UpgradedGiftBackdropCount[];
    gifts: GiftForResale[];
    models: UpgradedGiftModelCount[];
    next_offset: string;
    symbols: UpgradedGiftSymbolCount[];
    total_count: number;
}

Properties

@type: "giftsForResale"

Available backdrops; for searchGiftsForResale requests without offset and attributes only.

gifts: GiftForResale[]

The gifts.

Available models; for searchGiftsForResale requests without offset and attributes only.

next_offset: string

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

Available symbols; for searchGiftsForResale requests without offset and attributes only.

total_count: number

Total number of gifts found.