EntitlementInfo 
    data class EntitlementInfo(    val identifier: String,     val isActive: Boolean,     val willRenew: Boolean,     val periodType: PeriodType,     val latestPurchaseDate: Date,     val originalPurchaseDate: Date,     val expirationDate: Date?,     val store: Store,     val productIdentifier: String,     val isSandbox: Boolean,     val unsubscribeDetectedAt: Date?,     val billingIssueDetectedAt: Date?,     val ownershipType: OwnershipType,     jsonObject: JSONObject) : Parcelable, RawDataContainer<JSONObject> 
Content copied to clipboard
This object gives you access to all of the information about the status of a user's entitlements.
Constructors
Link copied to clipboard
                fun EntitlementInfo(    identifier: String,     isActive: Boolean,     willRenew: Boolean,     periodType: PeriodType,     latestPurchaseDate: Date,     originalPurchaseDate: Date,     expirationDate: Date?,     store: Store,     productIdentifier: String,     isSandbox: Boolean,     unsubscribeDetectedAt: Date?,     billingIssueDetectedAt: Date?,     ownershipType: OwnershipType,     jsonObject: JSONObject)
Content copied to clipboard
Functions
Properties
Link copied to clipboard