interface TableResultData {
    _id: null | string;
    documentCollection?: string;
    documentId?: string;
    drawn?: boolean;
    flags: DocumentFlags;
    img?: string;
    range?: number[];
    text?: string;
    type?: string;
    weight?: number;
}

Properties

_id: null | string

The _id which uniquely identifies this TableResult embedded document

documentCollection?: string

A named collection from which this result is drawn

documentId?: string

The _id of a Document within the collection this result references

drawn?: boolean

Has this result already been drawn (without replacement)

An object of optional key/value flags

img?: string

An image file url that represents the table result

range?: number[]

A length 2 array of ascending integers which defines the range of dice roll totals which produce this drawn result

text?: string

The text which describes the table result

type?: string

A result subtype from CONST.TABLE_RESULT_TYPES

weight?: number

The probabilistic weight of this result relative to other results