copyWith method
Implementation
RecurringTransactionsUpdateWebhook copyWith(
{String? webhookType,
String? webhookCode,
String? itemId,
List<String>? accountIds,
enums.WebhookEnvironmentValues? environment}) {
return RecurringTransactionsUpdateWebhook(
webhookType: webhookType ?? this.webhookType,
webhookCode: webhookCode ?? this.webhookCode,
itemId: itemId ?? this.itemId,
accountIds: accountIds ?? this.accountIds,
environment: environment ?? this.environment);
}