interface Superchat {
    _id: string;
    amount: number;
    channelId: string;
    comment: string;
    createdAt: string;
    createdAtTimestamp: number;
    currency: string;
    displayString: string;
    from: string;
    hash: string;
    isTest: boolean;
    message: string;
    name: string;
    payload: SuperchatPayload;
    platform: string;
    priority: number;
    read: boolean;
    repeat: boolean;
    type: "superchat";
}

Properties

_id: string
amount: number
channelId: string
comment: string
createdAt: string
createdAtTimestamp: number
currency: string
displayString: string
from: string
hash: string
isTest: boolean
message: string
name: string
platform: string
priority: number
read: boolean
repeat: boolean
type: "superchat"