@xray-app/xray-automation
Version:
Library for uploading test results to Xray Test Management
16 lines (15 loc) • 486 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.XrayCloudResponseV2 = void 0;
class XrayCloudResponseV2 {
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.XrayCloudResponseV2 = XrayCloudResponseV2;
exports.default = XrayCloudResponseV2;