SubscriptionItemCreateOptions constructor

const SubscriptionItemCreateOptions({
  1. UpcomingSubscriptionItemsItemBillingThresholds? billingThresholds,
  2. List<String>? expand,
  3. Map<String, String>? metadata,
  4. SubscriptionItemPaymentBehavior? paymentBehavior,
  5. String? plan,
  6. String? price,
  7. UpcomingSubscriptionItemsItemPriceData? priceData,
  8. PortalSubscriptionCancelProrationBehavior? prorationBehavior,
  9. DateTime? prorationDate,
  10. int? quantity,
  11. required String subscription,
  12. List<String>? taxRates,
})

Implementation

const SubscriptionItemCreateOptions({
  this.billingThresholds,
  this.expand,
  this.metadata,
  this.paymentBehavior,
  this.plan,
  this.price,
  this.priceData,
  this.prorationBehavior,
  this.prorationDate,
  this.quantity,
  required this.subscription,
  this.taxRates,
});