Interface PurchasesPackage

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

interface PurchasesPackage {
    identifier: string;
    offeringIdentifier: string;
    packageType: PACKAGE_TYPE;
    product: PurchasesStoreProduct;
}

Properties

identifier: string

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

offeringIdentifier: string

Offering this package belongs to.

packageType: PACKAGE_TYPE

Package type for the product. Will be one of [PACKAGE_TYPE].

Product assigned to this package.

Generated using TypeDoc