creditBankIncomeRefreshPost method

Future<Response<CreditBankIncomeRefreshResponse>> creditBankIncomeRefreshPost({
  1. required CreditBankIncomeRefreshRequest? body,
})

Refresh a user's bank income information

Implementation

Future<chopper.Response<CreditBankIncomeRefreshResponse>>
    creditBankIncomeRefreshPost(
        {required CreditBankIncomeRefreshRequest? body}) {
  generatedMapping.putIfAbsent(CreditBankIncomeRefreshResponse,
      () => CreditBankIncomeRefreshResponse.fromJsonFactory);

  return _creditBankIncomeRefreshPost(body: body);
}