creditPayrollIncomeRefreshPost method

Future<Response<CreditPayrollIncomeRefreshResponse>> creditPayrollIncomeRefreshPost({
  1. required CreditPayrollIncomeRefreshRequest? body,
})

Refresh a digital payroll income verification

Implementation

Future<chopper.Response<CreditPayrollIncomeRefreshResponse>>
    creditPayrollIncomeRefreshPost(
        {required CreditPayrollIncomeRefreshRequest? body}) {
  generatedMapping.putIfAbsent(CreditPayrollIncomeRefreshResponse,
      () => CreditPayrollIncomeRefreshResponse.fromJsonFactory);

  return _creditPayrollIncomeRefreshPost(body: body);
}