Roll Value

interface IRollValue {
    uuid: string;
    is_hidden: boolean;
    is_user_value: boolean;
    is_visible: boolean;
    is_cleared: boolean;
    is_dropped: boolean;
    label?: string;
    meta?: {
        [key: string]: any;
    };
    type: string;
    theme: string;
    value: number;
    value_to_display: string | IRollValueImage;
    created_at: string;
    updated_at: string;
}

Properties

uuid: string
is_hidden: boolean
is_user_value: boolean
is_visible: boolean
is_cleared: boolean
is_dropped: boolean
label?: string
meta?: {
    [key: string]: any;
}

Type declaration

  • [key: string]: any
type: string
theme: string
value: number
value_to_display: string | IRollValueImage
created_at: string
updated_at: string

Generated using TypeDoc