Interface SubscriptionOption

Represents a possible option to purchase a subscription product.

interface SubscriptionOption {
    base: PricingPhase;
    id: string;
    trial: null | PricingPhase;
}

Hierarchy (view full)

Properties

Properties

The base phase for a SubscriptionOption, represents the price that the customer will be charged after all the discounts have been consumed and the period at which it will renew.

id: string

The unique id for a purchase option

trial: null | PricingPhase

The trial information for this subscription option if available.