@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
43 lines • 1 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CustomForecastEntry = void 0;
/**
* A monthly entry of a custom budget forecast.
*/
class CustomForecastEntry {
constructor() { }
/**
* @ignore
*/
static getAttributeTypeMap() {
return CustomForecastEntry.attributeTypeMap;
}
}
exports.CustomForecastEntry = CustomForecastEntry;
/**
* @ignore
*/
CustomForecastEntry.attributeTypeMap = {
amount: {
baseName: "amount",
type: "number",
required: true,
format: "double",
},
month: {
baseName: "month",
type: "number",
required: true,
format: "int64",
},
tagFilters: {
baseName: "tag_filters",
type: "Array<CustomForecastEntryTagFilter>",
required: true,
},
additionalProperties: {
baseName: "additionalProperties",
type: "{ [key: string]: any; }",
},
};
//# sourceMappingURL=CustomForecastEntry.js.map