InvoiceItemCreateOptions constructor
const
InvoiceItemCreateOptions({
- int? amount,
- String? currency,
- required String customer,
- String? description,
- bool? discountable,
- List<
InvoiceItemDiscountsItem> ? discounts, - List<
String> ? expand, - String? invoice,
- Map<
String, String> ? metadata, - InvoiceLineItemPeriod? period,
- String? price,
- InvoiceItemPriceData? priceData,
- int? quantity,
- String? subscription,
- ShippingRateCurrencyOptionTaxBehavior? taxBehavior,
- String? taxCode,
- List<
String> ? taxRates, - int? unitAmount,
- String? unitAmountDecimal,
Implementation
const InvoiceItemCreateOptions({
this.amount,
this.currency,
required this.customer,
this.description,
this.discountable,
this.discounts,
this.expand,
this.invoice,
this.metadata,
this.period,
this.price,
this.priceData,
this.quantity,
this.subscription,
this.taxBehavior,
this.taxCode,
this.taxRates,
this.unitAmount,
this.unitAmountDecimal,
});