component-dbs-core
Version:
DTO objects shared among device backend
26 lines • 1.03 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TransactionRequest = exports.TransactionResponse = void 0;
class TransactionResponse {
}
exports.TransactionResponse = TransactionResponse;
class TransactionRequest {
/**
* @param userIdentityId Federated identity of the login end-user making the request.
* @param transactionId Client generated uuid for referencing requested transaction.
* @param stan STAN of the transaction.
* @param catid <add description>
* @param caid <add description>
* @param iso8583 Base64 encoded of the DUKPT encrypted IS8583 financial message
*/
constructor(userIdentityId, transactionId, stan, catid, caid, iso8583) {
this.userIdentityId = userIdentityId;
this.transactionId = transactionId;
this.stan = stan;
this.catid = catid;
this.caid = caid;
this.iso8583 = iso8583;
}
}
exports.TransactionRequest = TransactionRequest;
//# sourceMappingURL=transactionDto.js.map