Contains information about the product available for the user to purchase. For more info see https://docs.revenuecat.com/docs/entitlements

interface Package {
    identifier: string;
    packageType: PackageType;
    rcBillingProduct: Product;
    webBillingProduct: Product;
    webCheckoutURL?: null | string;
}

Properties

identifier: string

Unique identifier for this package. Can be one a predefined package type or a custom one.

packageType: PackageType

The type of package.

rcBillingProduct: Product

The Product assigned to this package.

webBillingProduct: Product

The Product assigned to this package.

webCheckoutURL?: null | string

The web checkout URL for this package, if available.