copyWith method
Implementation
CreditBankIncomeRefreshRequestOptions copyWith(
{int? daysRequested, String? webhook}) {
return CreditBankIncomeRefreshRequestOptions(
daysRequested: daysRequested ?? this.daysRequested,
webhook: webhook ?? this.webhook);
}