RCPackage
@interface RCPackage : NSObject
Contains information about the product available for the user to purchase. For more info see https://docs.revenuecat.com/docs/entitlements
-
Unique identifier for this package. Can be one a predefined package type or a custom one.
Declaration
Objective-C
@property (readonly) NSString *_Nonnull identifier; -
Package type for the product. Will be one of
RCPackageType.Declaration
Objective-C
@property (readonly) RCPackageType packageType; -
SKProductassigned to this package. https://developer.apple.com/documentation/storekit/skproductDeclaration
Objective-C
@property (readonly) SKProduct *_Nonnull product; -
A String containing the localized price
Declaration
Objective-C
@property (readonly) NSString *_Nonnull localizedPriceString; -
A String containing the localized introductory price
Declaration
Objective-C
@property (readonly) NSString *_Nonnull localizedIntroductoryPriceString;
View on GitHub
RCPackage Class Reference