interface HostingMarketplaceSubscription {
    activated_at?: null | string;
    auto_renew: boolean;
    community_id?: null | string;
    id: string;
    is_free_trial: boolean;
    is_test: boolean;
    marketplace_subscription_id: string;
    offer_id: string;
    plan_id: string;
    plan_key: HostingPlanKey;
    quantity: number;
    status: "PendingFulfillmentStart" | "Subscribed" | "Suspended" | "Unsubscribed";
    subscription_name?: null | string;
    term_ends_at?: null | string;
    term_starts_at?: null | string;
}

Properties

activated_at?: null | string
auto_renew: boolean
community_id?: null | string
id: string
is_free_trial: boolean
is_test: boolean
marketplace_subscription_id: string
offer_id: string
plan_id: string
plan_key: HostingPlanKey
quantity: number
status: "PendingFulfillmentStart" | "Subscribed" | "Suspended" | "Unsubscribed"
subscription_name?: null | string
term_ends_at?: null | string
term_starts_at?: null | string

Generated using TypeDoc