palmpaywrappersdk
Version:
PalmPay Wrapper Sdk
17 lines (16 loc) • 512 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PayOutResponse = void 0;
// PayInCreateOrderResponse.ts
class PayOutResponse {
constructor(amount, orderNo, orderId, fee, orderStatus, message, status) {
this.amount = amount;
this.orderNo = orderNo;
this.orderId = orderId;
this.fee = fee;
this.orderStatus = orderStatus;
this.message = message;
this.status = status;
}
}
exports.PayOutResponse = PayOutResponse;