copyWith method
EntityScreeningStatusUpdatedWebhook
copyWith({
- String? webhookType,
- String? webhookCode,
- dynamic screeningId,
- WebhookEnvironmentValues? environment,
Implementation
EntityScreeningStatusUpdatedWebhook copyWith(
{String? webhookType,
String? webhookCode,
dynamic screeningId,
enums.WebhookEnvironmentValues? environment}) {
return EntityScreeningStatusUpdatedWebhook(
webhookType: webhookType ?? this.webhookType,
webhookCode: webhookCode ?? this.webhookCode,
screeningId: screeningId ?? this.screeningId,
environment: environment ?? this.environment);
}