diffusion
Version:
Diffusion JavaScript client
24 lines (23 loc) • 674 B
JavaScript
;
/**
* @module Services.ReplaceLicence
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.ReplaceLicenceResponse = void 0;
/**
* Data type for a UPDATE_LICENCE response.
*/
var ReplaceLicenceResponse = /** @class */ (function () {
/**
* Create a new ReplaceLicence instance
*
* @param type the byte ID of the response
* @param resString the string response of the licence update
*/
function ReplaceLicenceResponse(type, resString) {
this.type = type;
this.resString = resString;
}
return ReplaceLicenceResponse;
}());
exports.ReplaceLicenceResponse = ReplaceLicenceResponse;