palmpaywrappersdk
Version:
PalmPay Wrapper Sdk
17 lines (16 loc) • 683 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MerchantBalanceResponse = void 0;
// PayInCreateOrderResponse.ts
class MerchantBalanceResponse {
constructor(availableBalance, frozenBalance, currentBalance, unsettleBalance, guaranteedBalance, accountId, canTopUp) {
this.availableBalance = availableBalance;
this.frozenBalance = frozenBalance;
this.currentBalance = currentBalance;
this.unsettleBalance = unsettleBalance;
this.guaranteedBalance = guaranteedBalance;
this.accountId = accountId;
this.canTopUp = canTopUp;
}
}
exports.MerchantBalanceResponse = MerchantBalanceResponse;