Interface UserGifts

Represents a list of gifts received by a user.

interface UserGifts {
    @type: "userGifts";
    gifts: UserGift[];
    next_offset: string;
    total_count: number;
}

Properties

@type: "userGifts"
gifts: UserGift[]

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.