diffusion
Version:
Diffusion JavaScript client
24 lines (23 loc) • 643 B
JavaScript
;
/**
* @module Services.GatewayControl
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.GetOperationsResponse = void 0;
/**
* Gateway response from a get operations request.
*/
var GetOperationsResponse = /** @class */ (function () {
/**
* Create a new GetOperationsResponse instance
*
* @param type response type
* @param operations the operations
*/
function GetOperationsResponse(type, operations) {
this.type = type;
this.operations = operations;
}
return GetOperationsResponse;
}());
exports.GetOperationsResponse = GetOperationsResponse;