Interface GiftPurchaseLimits

Describes the maximum number of times that a specific gift can be purchased.

interface GiftPurchaseLimits {
    @type: "giftPurchaseLimits";
    remaining_count: number;
    total_count: number;
}

Properties

@type: "giftPurchaseLimits"
remaining_count: number

Number of remaining times the gift can be purchased.

total_count: number

The maximum number of times the gifts can be purchased.