PFProductStatus
Objective-C
enum PFProductStatus {}
Swift
enum PFProductStatus : Int
Enum of product statuses
-
Product status ready, it can be activated through dashboard
Declaration
Objective-C
PFProductStatusReadySwift
case ready = 0 -
Product status pending, it needs to be synced through sdk
Declaration
Objective-C
PFProductStatusPendingSwift
case pending = 1 -
Product status active, it can be purchased
Declaration
Objective-C
PFProductStatusActiveSwift
case active = 2 -
Product status purchased
Declaration
Objective-C
PFProductStatusPurchasedSwift
case purchased = 3
View on GitHub
PFProductStatus Enumeration Reference