Represents a single subscription.

interface Subscription {
    billingPlans: BillingPlan[];
    freeTrial?: "ACTIVE" | "INACTIVE";
    name: string;
    subscriptionReference: string;
}

Properties

billingPlans: BillingPlan[]
freeTrial?: "ACTIVE" | "INACTIVE"
name: string

Name of the subscription.

subscriptionReference: string

Unique reference for the subscription.