Skip to content

Commit

Permalink
chore(core): Subscription KDoc: mention IDs
Browse files Browse the repository at this point in the history
  • Loading branch information
lukellmann committed Sep 14, 2024
1 parent eddd6c6 commit cdf41be
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ public class Subscription(
/** The behavior of the [User] who is subscribed. */
public val user: UserBehavior get() = UserBehavior(userId, kord)

/** The list of [Sku]s subscribed to. */
/** The list of IDs of the [Sku]s subscribed to. */
public val skuIds: List<Snowflake> get() = data.skuIds

/** The list of [Entitlement]s granted for this subscription. */
/** The list of IDs of the [Entitlement]s granted for this subscription. */
public val entitlementIds: List<Snowflake> get() = data.entitlementIds

/** The start date of the current subscription period. */
Expand Down

0 comments on commit cdf41be

Please sign in to comment.