@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
40 lines • 971 B
JavaScript
;
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