watchlistScreeningEntityListPost method

Future<Response<WatchlistScreeningEntityListResponse>> watchlistScreeningEntityListPost({
  1. required WatchlistScreeningEntityListRequest? body,
})

List entity watchlist screenings

Implementation

Future<chopper.Response<WatchlistScreeningEntityListResponse>>
    watchlistScreeningEntityListPost(
        {required WatchlistScreeningEntityListRequest? body}) {
  generatedMapping.putIfAbsent(WatchlistScreeningEntityListResponse,
      () => WatchlistScreeningEntityListResponse.fromJsonFactory);

  return _watchlistScreeningEntityListPost(body: body);
}