Package com.revenuecat.purchases

Types

Link copied to clipboard
enum BillingFeature : Enum<BillingFeature>

Enum mapping billing feature types Allows for a common interface when calling feature eligibility methods from hybrid SDKs

Link copied to clipboard
data class CustomerInfo(    val entitlements: EntitlementInfos,     purchasedNonSubscriptionSkus: Set<String>,     val allExpirationDatesByProduct: Map<String, Date?>,     val allPurchaseDatesByProduct: Map<String, Date?>,     val requestDate: Date,     jsonObject: JSONObject,     val schemaVersion: Int,     val firstSeen: Date,     val originalAppUserId: String,     val managementURL: Uri?,     val originalPurchaseDate: Date?) : Parcelable, RawDataContainer<JSONObject>

Class containing all information regarding the purchaser

Link copied to clipboard
data class DangerousSettings(val autoSyncPurchases: Boolean = true)

Only use a Dangerous Setting if suggested by RevenueCat support team.

Link copied to clipboard
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>

This object gives you access to all of the information about the status of a user's entitlements.

Link copied to clipboard
class EntitlementInfos(val all: Map<String, EntitlementInfo>) : Parcelable

This class contains all the entitlements associated to the user.

Link copied to clipboard
interface LogHandler

Interface that allows handling logs manually. See also Purchases.logHandler

Link copied to clipboard
data class Offering(    val identifier: String,     val serverDescription: String,     val availablePackages: List<Package>) : Parcelable

An offering is a collection of Package available for the user to purchase. For more info see https://docs.revenuecat.com/docs/entitlements

Link copied to clipboard
data class Offerings(val current: Offering?, val all: Map<String, Offering>) : Parcelable

This class contains all the offerings configured in RevenueCat dashboard. For more info see https://docs.revenuecat.com/docs/entitlements

Link copied to clipboard
enum OwnershipType : Enum<OwnershipType>

Enum of supported ownership types for an entitlement.

Link copied to clipboard
data class Package(    val identifier: String,     val packageType: PackageType,     val product: StoreProduct,     val offering: String) : Parcelable

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

Link copied to clipboard
enum PackageType : Enum<PackageType>

Enumeration of all possible Package types.

Link copied to clipboard
enum PeriodType : Enum<PeriodType>

Enum of supported period types for an entitlement.

Link copied to clipboard
enum ProductType : Enum<ProductType>
Link copied to clipboard
class PurchasesError(val code: PurchasesErrorCode, val underlyingErrorMessage: String? = null)

This class represents an error

Link copied to clipboard
typealias PurchasesErrorCallback = (PurchasesError) -> Unit
Link copied to clipboard
enum PurchasesErrorCode : Enum<PurchasesErrorCode>
Link copied to clipboard
enum Store : Enum<Store>

Enum of supported stores