UNPKG

@datadog/datadog-api-client

Version:
43 lines 1 kB
"use strict"; 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