paymentInitiationConsentRevokePost method

Future<Response<PaymentInitiationConsentRevokeResponse>> paymentInitiationConsentRevokePost({
  1. required PaymentInitiationConsentRevokeRequest? body,
})

Revoke payment consent

Implementation

Future<chopper.Response<PaymentInitiationConsentRevokeResponse>>
    paymentInitiationConsentRevokePost(
        {required PaymentInitiationConsentRevokeRequest? body}) {
  generatedMapping.putIfAbsent(PaymentInitiationConsentRevokeResponse,
      () => PaymentInitiationConsentRevokeResponse.fromJsonFactory);

  return _paymentInitiationConsentRevokePost(body: body);
}