InvoiceLineItemUpdateOptions constructor

const InvoiceLineItemUpdateOptions({
  1. int? amount,
  2. String? description,
  3. bool? discountable,
  4. List<InvoiceItemDiscountsItem>? discounts,
  5. List<String>? expand,
  6. Map<String, String>? metadata,
  7. InvoiceLineItemPeriod? period,
  8. String? price,
  9. InvoiceLineItemPriceData? priceData,
  10. int? quantity,
  11. List<InvoiceLineItemTaxAmountsItem>? taxAmounts,
  12. List<String>? taxRates,
})

Implementation

const InvoiceLineItemUpdateOptions({
  this.amount,
  this.description,
  this.discountable,
  this.discounts,
  this.expand,
  this.metadata,
  this.period,
  this.price,
  this.priceData,
  this.quantity,
  this.taxAmounts,
  this.taxRates,
});