copyWith method

IncomeVerificationStatusWebhook copyWith({
  1. String? webhookType,
  2. String? webhookCode,
  3. String? incomeVerificationId,
  4. String? verificationStatus,
})

Implementation

IncomeVerificationStatusWebhook copyWith(
    {String? webhookType,
    String? webhookCode,
    String? incomeVerificationId,
    String? verificationStatus}) {
  return IncomeVerificationStatusWebhook(
      webhookType: webhookType ?? this.webhookType,
      webhookCode: webhookCode ?? this.webhookCode,
      incomeVerificationId: incomeVerificationId ?? this.incomeVerificationId,
      verificationStatus: verificationStatus ?? this.verificationStatus);
}