This class contains all the offerings configured in RevenueCat dashboard. For more info see https://docs.revenuecat.com/docs/entitlements

interface Offerings {
    all: {
        [offeringId: string]: Offering;
    };
    current: null | Offering;
}

Properties

Properties

all: {
    [offeringId: string]: Offering;
}

Dictionary containing all Offering objects, keyed by their identifier.

current: null | Offering

Current offering configured in the RevenueCat dashboard. It can be null if no current offering is configured or if a specific offering was requested that is not the current one.