Interface MessageGift

A regular gift was received or sent by the current user, or the current user was notified about a channel gift. Subtype of MessageContent.

interface MessageGift {
    @type: "messageGift";
    can_be_upgraded?: boolean;
    gift: Gift;
    is_private?: boolean;
    is_saved?: boolean;
    prepaid_upgrade_star_count: number;
    received_gift_id: string;
    sell_star_count: number;
    sender_id: MessageSender;
    text: FormattedText;
    upgraded_received_gift_id: string;
    was_converted?: boolean;
    was_refunded?: boolean;
    was_upgraded?: boolean;
}

Properties

@type: "messageGift"
can_be_upgraded?: boolean

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

gift: Gift

The gift.

is_private?: boolean

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

is_saved?: boolean

True, if the gift is displayed on the user's or the channel'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 receiver.

sender_id: MessageSender

Sender of the gift.

Message added to the gift.

upgraded_received_gift_id: string

Identifier of the corresponding upgraded gift; may be empty if unknown. Use getReceivedGift to get information about the gift.

was_converted?: boolean

True, if the gift was converted to Telegram Stars; only for the receiver of the gift.

was_refunded?: boolean

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

was_upgraded?: boolean

True, if the gift was upgraded to a unique gift.