employmentVerificationGetPost abstract method

  1. @Post.new(path: '/employment/verification/get')
Future<Response<EmploymentVerificationGetResponse>> employmentVerificationGetPost({
  1. @Body.new() required EmploymentVerificationGetRequest? body,
})

Retrieve a summary of an individual's employment information.

Implementation

@Post(path: '/employment/verification/get')
Future<chopper.Response<EmploymentVerificationGetResponse>>
    employmentVerificationGetPost(
        {@Body() required EmploymentVerificationGetRequest? body});