UNPKG

@datadog/datadog-api-client

Version:
40 lines 971 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PointPlotProjection = void 0; /** * Projection configuration for the point plot widget. */ class PointPlotProjection { constructor() { } /** * @ignore */ static getAttributeTypeMap() { return PointPlotProjection.attributeTypeMap; } } exports.PointPlotProjection = PointPlotProjection; /** * @ignore */ PointPlotProjection.attributeTypeMap = { dimensions: { baseName: "dimensions", type: "Array<PointPlotProjectionDimension>", required: true, }, extraColumns: { baseName: "extra_columns", type: "Array<string>", }, type: { baseName: "type", type: "PointPlotProjectionType", required: true, }, additionalProperties: { baseName: "additionalProperties", type: "{ [key: string]: any; }", }, }; //# sourceMappingURL=PointPlotProjection.js.map