PaymentAmountInfo constructor

PaymentAmountInfo({
  1. int? approvedAmount,
  2. int? depositedAmount,
  3. int? refundedAmount,
  4. PaymentState? paymentState,
  5. int? feeAmount,
  6. int? totalAmount,
})

Информация о сумме платежа

Implementation

PaymentAmountInfo({
  this.approvedAmount,
  this.depositedAmount,
  this.refundedAmount,
  this.paymentState,
  this.feeAmount,
  this.totalAmount,
});