watchlistScreeningEntityUpdatePost method

Future<Response<WatchlistScreeningEntityUpdateResponse>> watchlistScreeningEntityUpdatePost({
  1. required WatchlistScreeningEntityUpdateRequest? body,
})

Update an entity screening

Implementation

Future<chopper.Response<WatchlistScreeningEntityUpdateResponse>>
    watchlistScreeningEntityUpdatePost(
        {required WatchlistScreeningEntityUpdateRequest? body}) {
  generatedMapping.putIfAbsent(WatchlistScreeningEntityUpdateResponse,
      () => WatchlistScreeningEntityUpdateResponse.fromJsonFactory);

  return _watchlistScreeningEntityUpdatePost(body: body);
}