diffusion
Version:
Diffusion JavaScript client
28 lines (27 loc) • 984 B
JavaScript
;
/**
* @module Services.GatewayControl
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.GetOperationDetailResponse = void 0;
/**
* Gateway response from a get operation detail request.
*/
var GetOperationDetailResponse = /** @class */ (function () {
/**
* Create a new GetOperationDetailResponse instance
*
* @param type response type
* @param description a detailed description of the operation
* @param inputSchema JSON schema for the input of the operation (optional)
* @param outputSchema JSOn schema for the output of the operation (optional)
*/
function GetOperationDetailResponse(type, description, inputSchema, outputSchema) {
this.type = type;
this.description = description;
this.inputSchema = inputSchema;
this.outputSchema = outputSchema;
}
return GetOperationDetailResponse;
}());
exports.GetOperationDetailResponse = GetOperationDetailResponse;