PaymentInitiationPaymentReverseRequest constructor

PaymentInitiationPaymentReverseRequest({
  1. String? clientId,
  2. String? secret,
  3. required String paymentId,
  4. required String idempotencyKey,
  5. required String reference,
  6. PaymentAmountToRefund? amount,
})

Implementation

PaymentInitiationPaymentReverseRequest({
  this.clientId,
  this.secret,
  required this.paymentId,
  required this.idempotencyKey,
  required this.reference,
  this.amount,
});