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