ViewerDrawingResult

Interface ViewerDrawingResult

Specifies the result of a viewer drawing operation. The result contains the geometries of the drawing, a thumbnail of the drawing, and the version of data contained within the drawing.

interface ViewerDrawingResult {
    geometries: ViewerDrawingGeometry[];
    thumbnail: string;
    version: { major: number; minor: number; patch: number };
}

Properties

geometries: ViewerDrawingGeometry[]

Contains the geometries of the drawing.

thumbnail: string

Thumbnail of the drawing, which is encoded as a base64 string.

version: { major: number; minor: number; patch: number }

Version of the data contained within the drawing. Current version: 1.0.2