QuoteUpdateOptionsSubscriptionData constructor

const QuoteUpdateOptionsSubscriptionData({
  1. String? description,
  2. QuoteEffectiveDate? effectiveDate,
  3. Map<String, String>? metadata,
  4. int? trialPeriodDays,
})

subscription_data_update_params

When creating a subscription or subscription schedule, the specified configuration data will be used. There must be at least one line item with a recurring price for a subscription or subscription schedule to be created. A subscription schedule is created if `subscription_data[effective_date]` is present and in the future, otherwise a subscription is created.

Implementation

const QuoteUpdateOptionsSubscriptionData({
  this.description,
  this.effectiveDate,
  this.metadata,
  this.trialPeriodDays,
});