PlanCreateOptions constructor

const PlanCreateOptions({
  1. bool? active,
  2. PlanAggregateUsage? aggregateUsage,
  3. int? amount,
  4. String? amountDecimal,
  5. InvoiceitemPlanBillingScheme? billingScheme,
  6. required String currency,
  7. List<String>? expand,
  8. String? id,
  9. required InvoiceitemPlanInterval interval,
  10. int? intervalCount,
  11. Map<String, String>? metadata,
  12. String? meter,
  13. String? nickname,
  14. PlanProduct? product,
  15. List<PlanTiersItem>? tiers,
  16. PlanTiersMode? tiersMode,
  17. TransformUsage? transformUsage,
  18. int? trialPeriodDays,
  19. InvoiceitemPlanUsageType? usageType,
})

Implementation

const PlanCreateOptions({
  this.active,
  this.aggregateUsage,
  this.amount,
  this.amountDecimal,
  this.billingScheme,
  required this.currency,
  this.expand,
  this.id,
  required this.interval,
  this.intervalCount,
  this.metadata,
  this.meter,
  this.nickname,
  this.product,
  this.tiers,
  this.tiersMode,
  this.transformUsage,
  this.trialPeriodDays,
  this.usageType,
});