diffusion
Version:
Diffusion JavaScript client
23 lines (22 loc) • 666 B
JavaScript
;
/**
* @module Services.GatewayControl
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.AddUpdateServiceResponse = void 0;
/**
* Gateway response from either adding or updating a service.
*/
var AddUpdateServiceResponse = /** @class */ (function () {
/**
* Create a new AddUpdateServiceResponse instance
* @param type the response type
* @param service the returned service
*/
function AddUpdateServiceResponse(type, service) {
this.type = type;
this.service = service;
}
return AddUpdateServiceResponse;
}());
exports.AddUpdateServiceResponse = AddUpdateServiceResponse;