Roll

interface IRoll {
    uuid: string;
    equation: string;
    direction: number;
    room: IRoom;
    label?: string;
    total_value: string | (string | IRollValueImage)[];
    user: IUser;
    external_id?: string;
    values: IRollValue[];
    velocity: number;
    created_at: string;
    updated_at: string;
    operator: Record<string, string>;
    whisper: string[];
}

Properties

uuid: string
equation: string
direction: number
room: IRoom
label?: string
total_value: string | (string | IRollValueImage)[]
user: IUser
external_id?: string
values: IRollValue[]
velocity: number
created_at: string
updated_at: string
operator: Record<string, string>
whisper: string[]

Generated using TypeDoc