copyWith method
      
PaymentInitiationStandingOrderMetadata
copyWith({ 
    
    
- bool? supportsStandingOrderEndDate,
- bool? supportsStandingOrderNegativeExecutionDays,
- List<PaymentScheduleInterval> ? validStandingOrderIntervals,
Implementation
PaymentInitiationStandingOrderMetadata copyWith(
    {bool? supportsStandingOrderEndDate,
    bool? supportsStandingOrderNegativeExecutionDays,
    List<enums.PaymentScheduleInterval>? validStandingOrderIntervals}) {
  return PaymentInitiationStandingOrderMetadata(
      supportsStandingOrderEndDate:
          supportsStandingOrderEndDate ?? this.supportsStandingOrderEndDate,
      supportsStandingOrderNegativeExecutionDays:
          supportsStandingOrderNegativeExecutionDays ??
              this.supportsStandingOrderNegativeExecutionDays,
      validStandingOrderIntervals:
          validStandingOrderIntervals ?? this.validStandingOrderIntervals);
}