Interface GiftsGift

interface GiftsGift {
    date: number;
    from_id: number;
    gift_hash: string;
    id: number;
    message: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

date: number

Date when gist has been sent in Unixtime

from_id: number

Gift sender ID

gift_hash: string

Hash

id: number

Gift ID

message: string

Comment text

Generated using TypeDoc