c

ackcord.gateway

PresenceData

case class PresenceData(since: Option[Instant], activities: Seq[RawActivity], status: PresenceStatus, afk: Boolean) extends Product with Serializable

since

If present, instant when the user went idle.

activities

The presence activities.

status

The status of the user.

afk

If the user is AFK.

Source
gatewayData.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PresenceData
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new PresenceData(since: Option[Instant], activities: Seq[RawActivity], status: PresenceStatus, afk: Boolean)

    since

    If present, instant when the user went idle.

    activities

    The presence activities.

    status

    The status of the user.

    afk

    If the user is AFK.

Value Members

  1. val activities: Seq[RawActivity]
  2. val afk: Boolean
  3. def productElementNames: Iterator[String]
    Definition Classes
    Product
  4. val since: Option[Instant]
  5. val status: PresenceStatus