copyWith method
Implementation
UpdateEntityScreeningRequestSearchTerms copyWith(
{String? entityWatchlistProgramId,
String? legalName,
String? documentNumber,
String? emailAddress,
String? country,
String? phoneNumber,
String? url,
String? clientId,
String? secret}) {
return UpdateEntityScreeningRequestSearchTerms(
entityWatchlistProgramId:
entityWatchlistProgramId ?? this.entityWatchlistProgramId,
legalName: legalName ?? this.legalName,
documentNumber: documentNumber ?? this.documentNumber,
emailAddress: emailAddress ?? this.emailAddress,
country: country ?? this.country,
phoneNumber: phoneNumber ?? this.phoneNumber,
url: url ?? this.url,
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret);
}