copyWith method
Implementation
WebApiModulesBillingInvoiceInvoiceProcessBatchRequest copyWith({
String? locationId,
String? singleInvoiceId,
DateTime? asOfDate,
}) {
return WebApiModulesBillingInvoiceInvoiceProcessBatchRequest(
locationId: locationId ?? this.locationId,
singleInvoiceId: singleInvoiceId ?? this.singleInvoiceId,
asOfDate: asOfDate ?? this.asOfDate,
);
}