paymentInitiationPaymentReversePost method

Future<Response<PaymentInitiationPaymentReverseResponse>> paymentInitiationPaymentReversePost({
  1. required PaymentInitiationPaymentReverseRequest? body,
})

Reverse an existing payment

Implementation

Future<chopper.Response<PaymentInitiationPaymentReverseResponse>>
    paymentInitiationPaymentReversePost(
        {required PaymentInitiationPaymentReverseRequest? body}) {
  generatedMapping.putIfAbsent(PaymentInitiationPaymentReverseResponse,
      () => PaymentInitiationPaymentReverseResponse.fromJsonFactory);

  return _paymentInitiationPaymentReversePost(body: body);
}