copyWith method
Implementation
WebApiModulesBillingBillingCreateInvoiceRequest copyWith({
String? orderId,
DateTime? periodStart,
DateTime? periodEnd,
String? billPeriodEvent,
bool? includeNotYetOut,
bool? forceDates,
}) {
return WebApiModulesBillingBillingCreateInvoiceRequest(
orderId: orderId ?? this.orderId,
periodStart: periodStart ?? this.periodStart,
periodEnd: periodEnd ?? this.periodEnd,
billPeriodEvent: billPeriodEvent ?? this.billPeriodEvent,
includeNotYetOut: includeNotYetOut ?? this.includeNotYetOut,
forceDates: forceDates ?? this.forceDates,
);
}