copyWith method

EntityScreeningStatusUpdatedWebhook copyWith({
  1. String? webhookType,
  2. String? webhookCode,
  3. dynamic screeningId,
  4. 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);
}