cashport-js
Version:
Cashport-JS allows to integrate authorized payment and KYC features in your Server Side App.
36 lines • 839 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class CashportResponse {
get requestId() {
return this._requestId;
}
set requestId(value) {
this._requestId = value;
}
get type() {
return this._type;
}
set type(value) {
this._type = value;
}
get statusCode() {
return this._statusCode;
}
set statusCode(value) {
this._statusCode = value;
}
get developerMessage() {
return this._developerMessage;
}
set developerMessage(value) {
this._developerMessage = value;
}
get parameters() {
return this._parameters;
}
set parameters(value) {
this._parameters = value;
}
}
exports.CashportResponse = CashportResponse;
//# sourceMappingURL=CashportResponse.js.map