copyWith method
IdentityVerificationRetryResponse
copyWith({
- String? id,
- String? clientUserId,
- String? createdAt,
- String? completedAt,
- String? previousAttemptId,
- IdentityVerificationTemplateReference? template,
- IdentityVerificationUserData? user,
- IdentityVerificationStatus? status,
- IdentityVerificationStepSummary? steps,
- DocumentaryVerification? documentaryVerification,
- KYCCheckDetails? kycCheck,
- String? watchlistScreeningId,
- String? requestId,
Implementation
IdentityVerificationRetryResponse copyWith(
{String? id,
String? clientUserId,
String? createdAt,
String? completedAt,
String? previousAttemptId,
String? shareableUrl,
IdentityVerificationTemplateReference? template,
IdentityVerificationUserData? user,
enums.IdentityVerificationStatus? status,
IdentityVerificationStepSummary? steps,
DocumentaryVerification? documentaryVerification,
KYCCheckDetails? kycCheck,
String? watchlistScreeningId,
String? requestId}) {
return IdentityVerificationRetryResponse(
id: id ?? this.id,
clientUserId: clientUserId ?? this.clientUserId,
createdAt: createdAt ?? this.createdAt,
completedAt: completedAt ?? this.completedAt,
previousAttemptId: previousAttemptId ?? this.previousAttemptId,
shareableUrl: shareableUrl ?? this.shareableUrl,
template: template ?? this.template,
user: user ?? this.user,
status: status ?? this.status,
steps: steps ?? this.steps,
documentaryVerification:
documentaryVerification ?? this.documentaryVerification,
kycCheck: kycCheck ?? this.kycCheck,
watchlistScreeningId: watchlistScreeningId ?? this.watchlistScreeningId,
requestId: requestId ?? this.requestId);
}