Interface AvailableGift

Describes a gift that is available for purchase.

interface AvailableGift {
    @type: "availableGift";
    gift: Gift;
    min_resale_star_count: number;
    resale_count: number;
    title: string;
}

Properties

@type: "availableGift"
gift: Gift

The gift.

min_resale_star_count: number

The minimum price for the gifts available for resale; 0 if there are no such gifts.

resale_count: number

Number of gifts that are available for resale.

title: string

The title of the upgraded gift; empty if the gift isn't available for resale.