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