diffusion
Version:
Diffusion JavaScript client
27 lines (26 loc) • 839 B
JavaScript
;
/**
* @module Services.GatewayControl
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.GetConfigurationResponse = void 0;
/**
* Gateway response from a get configuration request.
*/
var GetConfigurationResponse = /** @class */ (function () {
/**
* Create a new GetConfigurationResponse instance
* @param type response type
* @param schemaType the type of the schema (not currently used)
* @param schema the schema data
* @param config the config data
*/
function GetConfigurationResponse(type, schemaType, schema, config) {
this.type = type;
this.config = config;
this.schemaType = schemaType;
this.schema = schema;
}
return GetConfigurationResponse;
}());
exports.GetConfigurationResponse = GetConfigurationResponse;