Interface ReceivedGift

Represents a gift received by a user or a chat.

interface ReceivedGift {
    @type: "receivedGift";
    can_be_transferred?: boolean;
    can_be_upgraded?: boolean;
    date: number;
    export_date: number;
    gift: SentGift;
    is_pinned?: boolean;
    is_private?: boolean;
    is_saved?: boolean;
    prepaid_upgrade_star_count: number;
    received_gift_id: string;
    sell_star_count: number;
    sender_id: MessageSender;
    text: FormattedText;
    transfer_star_count: number;
    was_refunded?: boolean;
}

Properties

@type: "receivedGift"
can_be_transferred?: boolean

True, if the gift is an upgraded gift that can be transferred to another owner; only for the receiver of the gift.

can_be_upgraded?: boolean

True, if the gift is a regular gift that can be upgraded to a unique gift; only for the receiver of the gift.

date: number

Point in time (Unix timestamp) when the gift was sent.

export_date: number

Point in time (Unix timestamp) when the upgraded gift can be transferred to the TON blockchain as an NFT; 0 if NFT export isn't possible; only for the receiver of the gift.

gift: SentGift

The gift.

is_pinned?: boolean

True, if the gift is pinned to the top of the chat's profile page.

is_private?: boolean

True, if the sender and gift text are shown only to the gift receiver; otherwise, everyone are able to see them.

is_saved?: boolean

True, if the gift is displayed on the chat's profile page; only for the receiver of the gift.

prepaid_upgrade_star_count: number

Number of Telegram Stars that were paid by the sender for the ability to upgrade the gift.

received_gift_id: string

Unique identifier of the received gift for the current user; only for the receiver of the gift.

sell_star_count: number

Number of Telegram Stars that can be claimed by the receiver instead of the regular gift; 0 if the gift can't be sold by the current user.

sender_id: MessageSender

Identifier of a user or a chat that sent the gift; may be null if unknown.

Message added to the gift.

transfer_star_count: number

Number of Telegram Stars that must be paid to transfer the upgraded gift; only for the receiver of the gift.

was_refunded?: boolean

True, if the gift was refunded and isn't available anymore.