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