copyWith method

WebApiModulesBillingInvoiceInvoiceProcessBatchRequest copyWith({
  1. String? locationId,
  2. String? singleInvoiceId,
  3. DateTime? asOfDate,
})

Implementation

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