@xray-app/xray-automation
Version:
Library for uploading test results to Xray Test Management
16 lines (15 loc) • 511 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.XrayDatacenterResponseV1 = void 0;
class XrayDatacenterResponseV1 {
constructor(response) {
this._response = response;
if (response.data !== undefined) {
this.id = response.data.id;
this.key = response.data.key;
this.selfUrl = response.data.self;
}
}
}
exports.XrayDatacenterResponseV1 = XrayDatacenterResponseV1;
exports.default = XrayDatacenterResponseV1;