Interface PurchasesOfferings

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

interface PurchasesOfferings {
    all: {
        [key: string]: PurchasesOffering;
    };
    current: null | PurchasesOffering;
}

Properties

Properties

all: {
    [key: string]: PurchasesOffering;
}

Map of all Offerings [PurchasesOffering] objects keyed by their identifier.

Type declaration

current: null | PurchasesOffering

Current offering configured in the RevenueCat dashboard.

Generated using TypeDoc