Package

data class Package(identifier: String, packageType: PackageType, product: SkuDetails, offering: String) : Parcelable

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

Constructors

Package
Link copied to clipboard
fun Package(identifier: String, packageType: PackageType, product: SkuDetails, offering: String)

Functions

describeContents
Link copied to clipboard
abstract fun describeContents(): Int
writeToParcel
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)

Properties

identifier
Link copied to clipboard
val identifier: String
Unique identifier for this package.
offering
Link copied to clipboard
val offering: String
packageType
Link copied to clipboard
val packageType: PackageType
Package type for the product.
product
Link copied to clipboard
val product: SkuDetails
SkuDetails assigned to this package.