InvoicesBatch constructor

InvoicesBatch({
  1. int invoicingYear = 0,
  2. int invoicingMonth = 0,
  3. String? fileRef,
  4. String? batchRef,
  5. String? ioFederationCode,
  6. int? uniqueSendNumber,
  7. InvoiceSender? sender,
  8. int? numericalRef,
  9. List<EfactInvoice> invoices = const [],
})

Returns a new InvoicesBatch instance.

Implementation

InvoicesBatch({
  this.invoicingYear = 0,
  this.invoicingMonth = 0,
  this.fileRef,
  this.batchRef,
  this.ioFederationCode,
  this.uniqueSendNumber,
  this.sender,
  this.numericalRef,
  this.invoices = const [],
});