EntitlementInfos

class EntitlementInfos(val all: Map<String, EntitlementInfo>) : Parcelable

This class contains all the entitlements associated to the user.

Constructors

Link copied to clipboard
fun EntitlementInfos(all: Map<String, EntitlementInfo>)

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
operator fun get(s: String): EntitlementInfo?

Retrieves an specific entitlementInfo by its entitlement identifier. It's equivalent to accessing the all map by entitlement identifier.

Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)

Properties

Link copied to clipboard
val active: Map<String, EntitlementInfo>

Dictionary of active EntitlementInfo objects keyed by entitlement identifier.

Link copied to clipboard
val all: Map<String, EntitlementInfo>

Map of all EntitlementInfo EntitlementInfo objects (active and inactive) keyed by entitlement identifier.

Sources

Link copied to clipboard