copyWithWrapped method
Implementation
WatchlistScreeningIndividualGetRequest copyWithWrapped(
{Wrapped<String>? watchlistScreeningId,
Wrapped<String?>? secret,
Wrapped<String?>? clientId}) {
return WatchlistScreeningIndividualGetRequest(
watchlistScreeningId: (watchlistScreeningId != null
? watchlistScreeningId.value
: this.watchlistScreeningId),
secret: (secret != null ? secret.value : this.secret),
clientId: (clientId != null ? clientId.value : this.clientId));
}