creditPayrollIncomePrecheckPost method

Future<Response<CreditPayrollIncomePrecheckResponse>> creditPayrollIncomePrecheckPost({
  1. required CreditPayrollIncomePrecheckRequest? body,
})

Check income verification eligibility and optimize conversion

Implementation

Future<chopper.Response<CreditPayrollIncomePrecheckResponse>>
    creditPayrollIncomePrecheckPost(
        {required CreditPayrollIncomePrecheckRequest? body}) {
  generatedMapping.putIfAbsent(CreditPayrollIncomePrecheckResponse,
      () => CreditPayrollIncomePrecheckResponse.fromJsonFactory);

  return _creditPayrollIncomePrecheckPost(body: body);
}