interface DM {
    data: {
        content: string;
        content_safe: string;
        system: boolean;
        user: string;
        userdata: {
            role: Role;
            supporter: boolean;
            supporter_tier: number;
            verified: boolean;
        };
    };
    id: string;
    stream: string;
    ts: Date;
}

Properties

Properties

data: {
    content: string;
    content_safe: string;
    system: boolean;
    user: string;
    userdata: {
        role: Role;
        supporter: boolean;
        supporter_tier: number;
        verified: boolean;
    };
}
id: string
stream: string
ts: Date