Interface UpgradedGift

Describes an upgraded gift that can be gifted to another user or transferred to TON blockchain as an NFT.

interface UpgradedGift {
    @type: "upgradedGift";
    backdrop: UpgradedGiftBackdrop;
    id: string;
    max_upgraded_count: number;
    model: UpgradedGiftModel;
    number: number;
    original_details: UpgradedGiftOriginalDetails;
    owner_user_id: number;
    symbol: UpgradedGiftSymbol;
    title: string;
    total_upgraded_count: number;
}

Properties

@type: "upgradedGift"

Backdrop of the upgraded gift.

id: string

Unique identifier of the gift.

max_upgraded_count: number

The maximum number of gifts that can be upgraded from the same gift.

Model of the upgraded gift.

number: number

Unique number of the upgraded gift among gifts upgraded from the same gift.

original_details: UpgradedGiftOriginalDetails

Information about the originally sent gift; may be null if unknown.

owner_user_id: number

User identifier of the user that owns the upgraded gift; 0 if none.

Symbol of the upgraded gift.

title: string

The title of the upgraded gift.

total_upgraded_count: number

Total number of gifts that were upgraded from the same gift.