copyWithWrapped method

WatchlistScreeningEntityGetRequest copyWithWrapped({
  1. Wrapped<String>? entityWatchlistScreeningId,
  2. Wrapped<String?>? secret,
  3. Wrapped<String?>? clientId,
})

Implementation

WatchlistScreeningEntityGetRequest copyWithWrapped(
    {Wrapped<String>? entityWatchlistScreeningId,
    Wrapped<String?>? secret,
    Wrapped<String?>? clientId}) {
  return WatchlistScreeningEntityGetRequest(
      entityWatchlistScreeningId: (entityWatchlistScreeningId != null
          ? entityWatchlistScreeningId.value
          : this.entityWatchlistScreeningId),
      secret: (secret != null ? secret.value : this.secret),
      clientId: (clientId != null ? clientId.value : this.clientId));
}