copyWithWrapped method
Implementation
IdentityVerificationStatusUpdatedWebhook copyWithWrapped(
{Wrapped<String>? webhookType,
Wrapped<String>? webhookCode,
Wrapped<dynamic>? identityVerificationId,
Wrapped<enums.WebhookEnvironmentValues>? environment}) {
return IdentityVerificationStatusUpdatedWebhook(
webhookType:
(webhookType != null ? webhookType.value : this.webhookType),
webhookCode:
(webhookCode != null ? webhookCode.value : this.webhookCode),
identityVerificationId: (identityVerificationId != null
? identityVerificationId.value
: this.identityVerificationId),
environment:
(environment != null ? environment.value : this.environment));
}