SessionStartLimit

@Serializable
data class SessionStartLimit(val totalSessions: Int, val remainingSessions: Int, val sessionLimitResetsIn: Int)(source)

Information on the limits on starting sessions.

Constructors

Link copied to clipboard
constructor(totalSessions: Int, remainingSessions: Int, sessionLimitResetsIn: Int)

Properties

Link copied to clipboard
@SerialName(value = "remaining")
val remainingSessions: Int

Number of sessions a user can still start.

Link copied to clipboard
@SerialName(value = "reset_after")
val sessionLimitResetsIn: Int

How long until the sessions remaining resets.

Link copied to clipboard
@SerialName(value = "total")
val totalSessions: Int

Number of sessions a user is allowed to start.