Interface ReceivedGifts

Represents a list of gifts received by a user or a chat.

interface ReceivedGifts {
    @type: "receivedGifts";
    are_notifications_enabled?: boolean;
    gifts: ReceivedGift[];
    next_offset: string;
    total_count: number;
}

Properties

@type: "receivedGifts"
are_notifications_enabled?: boolean

True, if notifications about new gifts of the owner are enabled.

gifts: ReceivedGift[]

The list of gifts.

next_offset: string

The offset for the next request. If empty, then there are no more results.

total_count: number

The total number of received gifts.