Interface ProductState

interface ProductState {
    billingId?: string;
    landingPage?: string;
    state: "uninitialized" | "active" | "inactive";
    subscriptionId?: string;
    tier: ProductTier;
}

Properties

billingId?: string
landingPage?: string
state: "uninitialized" | "active" | "inactive"
subscriptionId?: string