IssueInvoiceRequest constructor

const IssueInvoiceRequest({
  1. required String idempotencyKey,
  2. required String taxScheme,
  3. required String priceMode,
  4. required String serviceStart,
  5. required List<InvoiceItemInput> items,
  6. String? customerId,
  7. String? serviceEnd,
  8. int? paymentTermDays,
  9. String? orderReference,
  10. String? intro,
  11. String? note,
  12. String? paymentReference,
  13. bool? girocode,
  14. bool? tracking,
  15. Map<String, String>? metadata,
  16. String? language,
  17. String? brandId,
  18. PaymentInput? payment,
})

Implementation

const IssueInvoiceRequest({
  required this.idempotencyKey,
  required this.taxScheme,
  required this.priceMode,
  required this.serviceStart,
  required this.items,
  this.customerId,
  this.serviceEnd,
  this.paymentTermDays,
  this.orderReference,
  this.intro,
  this.note,
  this.paymentReference,
  this.girocode,
  this.tracking,
  this.metadata,
  this.language,
  this.brandId,
  this.payment,
});