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