Packages

c

ackcord.data

Connection

case class Connection(id: String, name: String, type: String, revoked: Option[Boolean], integrations: Option[Seq[Integration]], verified: Boolean, friendSync: Boolean, showActivity: Boolean, visibility: ConnectionVisibility) extends Product with Serializable

A connection that a user has attached.

id

The id of the connection.

name

The name of the connection.

revoked

If the connection has been revoked.

integrations

Integrations of the connection.

verified

If the connection is verified.

friendSync

If friend sync is enabled for the connection.

showActivity

If things related this this connection will be included in presence updates.

visibility

The visibility of the connection

Source
message.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Connection
  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 Connection(id: String, name: String, type: String, revoked: Option[Boolean], integrations: Option[Seq[Integration]], verified: Boolean, friendSync: Boolean, showActivity: Boolean, visibility: ConnectionVisibility)

    id

    The id of the connection.

    name

    The name of the connection.

    revoked

    If the connection has been revoked.

    integrations

    Integrations of the connection.

    verified

    If the connection is verified.

    friendSync

    If friend sync is enabled for the connection.

    showActivity

    If things related this this connection will be included in presence updates.

    visibility

    The visibility of the connection

Value Members

  1. val friendSync: Boolean
  2. val id: String
  3. val integrations: Option[Seq[Integration]]
  4. val name: String
  5. def productElementNames: Iterator[String]
    Definition Classes
    Product
  6. val revoked: Option[Boolean]
  7. val showActivity: Boolean
  8. val type: String
  9. val verified: Boolean
  10. val visibility: ConnectionVisibility