paymentInitiationConsentGetPost method

Future<Response<PaymentInitiationConsentGetResponse>> paymentInitiationConsentGetPost({
  1. required PaymentInitiationConsentGetRequest? body,
})

Get payment consent

Implementation

Future<chopper.Response<PaymentInitiationConsentGetResponse>>
    paymentInitiationConsentGetPost(
        {required PaymentInitiationConsentGetRequest? body}) {
  generatedMapping.putIfAbsent(PaymentInitiationConsentGetResponse,
      () => PaymentInitiationConsentGetResponse.fromJsonFactory);

  return _paymentInitiationConsentGetPost(body: body);
}