copyWithWrapped method
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));
}