UNPKG

diffusion

Version:

Diffusion JavaScript client

18 lines (17 loc) 484 B
"use strict"; /** * @module Services.Metrics */ Object.defineProperty(exports, "__esModule", { value: true }); exports.SetMetricAlertRequest = void 0; /** * A request setting a metric alert. */ var SetMetricAlertRequest = /** @class */ (function () { function SetMetricAlertRequest(name, specification) { this.name = name; this.specification = specification; } return SetMetricAlertRequest; }()); exports.SetMetricAlertRequest = SetMetricAlertRequest;