Active

@Serializable
data class Active(val entitlements: Set<Entitlement>) : SubscriptionStatus(source)

Represents an active entitlement status. This state indicates the user has one or more active entitlements.

Constructors

Link copied to clipboard
constructor(entitlements: Set<Entitlement>)

Properties

Link copied to clipboard
@SerialName(value = "entitlements")
val entitlements: Set<Entitlement>

A Set of active Entitlement objects belonging to the user

Link copied to clipboard