interface MeasuredTemplateData {
    _id: null | string;
    angle?: number;
    author: string;
    borderColor?: string;
    direction?: number;
    distance?: number;
    elevation?: number;
    fillColor?: string;
    flags: DocumentFlags;
    hidden?: boolean;
    t?: string;
    texture?: string;
    width?: number;
    x?: number;
    y?: number;
}

Properties

_id: null | string

The _id which uniquely identifies this BaseMeasuredTemplate embedded document

angle?: number

The angle of effect of the measured template, applies to cone types

author: string

The _id of the user who created this measured template

borderColor?: string

A color string used to tint the border of the template shape

direction?: number

The angle of rotation for the measured template

distance?: number

The distance of the template effect

elevation?: number

The elevation

fillColor?: string

A color string used to tint the fill of the template shape

An object of optional key/value flags

hidden?: boolean

Is the template currently hidden?

t?: string

The value in CONST.MEASURED_TEMPLATE_TYPES which defines the geometry type of this template

texture?: string

A repeatable tiling texture used to add a texture fill to the template shape

width?: number

The width of the measured template, applies to ray types

x?: number

The x-coordinate position of the origin of the template effect

y?: number

The y-coordinate position of the origin of the template effect