PriceCreateOptions constructor

const PriceCreateOptions({
  1. bool? active,
  2. InvoiceitemPlanBillingScheme? billingScheme,
  3. required String currency,
  4. Map<String, PriceCurrencyOptionsValue>? currencyOptions,
  5. PriceCustomUnitAmount? customUnitAmount,
  6. List<String>? expand,
  7. String? lookupKey,
  8. Map<String, String>? metadata,
  9. String? nickname,
  10. String? product,
  11. PlanProductInlineProductParams? productData,
  12. PriceRecurring? recurring,
  13. ShippingRateCurrencyOptionTaxBehavior? taxBehavior,
  14. List<PlanTiersItem>? tiers,
  15. PlanTiersMode? tiersMode,
  16. bool? transferLookupKey,
  17. TransformUsage? transformQuantity,
  18. int? unitAmount,
  19. String? unitAmountDecimal,
})

Implementation

const PriceCreateOptions({
  this.active,
  this.billingScheme,
  required this.currency,
  this.currencyOptions,
  this.customUnitAmount,
  this.expand,
  this.lookupKey,
  this.metadata,
  this.nickname,
  this.product,
  this.productData,
  this.recurring,
  this.taxBehavior,
  this.tiers,
  this.tiersMode,
  this.transferLookupKey,
  this.transformQuantity,
  this.unitAmount,
  this.unitAmountDecimal,
});