Invoice constructor

Invoice({
  1. List<CampaignSummary>? campaignSummaries,
  2. String? correctedInvoiceId,
  3. String? currencyCode,
  4. String? dueDate,
  5. String? id,
  6. String? invoiceType,
  7. String? issueDate,
  8. String? kind,
  9. String? paymentsAccountId,
  10. String? paymentsProfileId,
  11. String? pdfUrl,
  12. String? purchaseOrderNumber,
  13. List<String>? replacedInvoiceIds,
  14. String? serviceEndDate,
  15. String? serviceStartDate,
  16. String? subtotalAmountMicros,
  17. String? totalAmountMicros,
  18. String? totalTaxAmountMicros,
})

Implementation

Invoice({
  this.campaignSummaries,
  this.correctedInvoiceId,
  this.currencyCode,
  this.dueDate,
  this.id,
  this.invoiceType,
  this.issueDate,
  this.kind,
  this.paymentsAccountId,
  this.paymentsProfileId,
  this.pdfUrl,
  this.purchaseOrderNumber,
  this.replacedInvoiceIds,
  this.serviceEndDate,
  this.serviceStartDate,
  this.subtotalAmountMicros,
  this.totalAmountMicros,
  this.totalTaxAmountMicros,
});