interface Gift {
    createdAt: number;
    id: string;
    isAnonymous: boolean;
    isForMovie: boolean;
    isPaidGift: boolean;
    item: Twicas.Item;
    message: string;
    sender: Twicas.Sender;
    type: "gift";
}

Properties

createdAt: number
id: string
isAnonymous: boolean
isForMovie: boolean
isPaidGift: boolean
item: Twicas.Item
message: string
sender: Twicas.Sender
type: "gift"