IssueInvoiceRequest constructor

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

Implementation

const IssueInvoiceRequest({
  required this.idempotencyKey,
  this.taxScheme,
  this.reverseChargeReason,
  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,
});