creditBankIncomeGetPost method

Future<Response<CreditBankIncomeGetResponse>> creditBankIncomeGetPost({
  1. required CreditBankIncomeGetRequest? body,
})

Retrieve information from the bank accounts used for income verification

Implementation

Future<chopper.Response<CreditBankIncomeGetResponse>> creditBankIncomeGetPost(
    {required CreditBankIncomeGetRequest? body}) {
  generatedMapping.putIfAbsent(CreditBankIncomeGetResponse,
      () => CreditBankIncomeGetResponse.fromJsonFactory);

  return _creditBankIncomeGetPost(body: body);
}