paymentInitiationPaymentReversePost abstract method

  1. @Post.new(path: '/payment_initiation/payment/reverse')
Future<Response<PaymentInitiationPaymentReverseResponse>> paymentInitiationPaymentReversePost({
  1. @Body.new() required PaymentInitiationPaymentReverseRequest? body,
})

Reverse an existing payment

Implementation

@Post(path: '/payment_initiation/payment/reverse')
Future<chopper.Response<PaymentInitiationPaymentReverseResponse>>
    paymentInitiationPaymentReversePost(
        {@Body() required PaymentInitiationPaymentReverseRequest? body});