creditEmploymentGetPost method

Future<Response<CreditEmploymentGetResponse>> creditEmploymentGetPost({
  1. required CreditEmploymentGetRequest? body,
})

Retrieve a summary of an individual's employment information

Implementation

Future<chopper.Response<CreditEmploymentGetResponse>> creditEmploymentGetPost(
    {required CreditEmploymentGetRequest? body}) {
  generatedMapping.putIfAbsent(CreditEmploymentGetResponse,
      () => CreditEmploymentGetResponse.fromJsonFactory);

  return _creditEmploymentGetPost(body: body);
}