interface SubscriptionOffer {
    base_plan_id: null | string;
    offer_id: null | string;
    pricing_phases: CdvPurchase.GooglePlay.Bridge.PricingPhase[];
    tags: string[];
    token: string;
}

Properties

base_plan_id: null | string

Base plan id associated with the subscription product (since billing library v6).

offer_id: null | string

Offer id associated with the subscription product (since billing library v6).

Pricing phases for the subscription product.

tags: string[]

Tags associated with this Subscription Offer.

token: string

Token required to pass in launchBillingFlow to purchase the subscription product with these pricing phases.