identityVerificationListPost method

Future<Response<IdentityVerificationListResponse>> identityVerificationListPost({
  1. required IdentityVerificationListRequest? body,
})

List Identity Verifications

Implementation

Future<chopper.Response<IdentityVerificationListResponse>>
    identityVerificationListPost(
        {required IdentityVerificationListRequest? body}) {
  generatedMapping.putIfAbsent(IdentityVerificationListResponse,
      () => IdentityVerificationListResponse.fromJsonFactory);

  return _identityVerificationListPost(body: body);
}