Packages

case class Team(icon: Option[String], id: SnowflakeType[Team], members: Seq[TeamMember], name: String, ownerUserId: UserId) extends Product with Serializable

A discord team.

icon

Icon identifier for the team.

id

Id of the team.

members

Members of the team.

ownerUserId

The id of the current owner of the team

Source
team.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Team
  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 Team(icon: Option[String], id: SnowflakeType[Team], members: Seq[TeamMember], name: String, ownerUserId: UserId)

    icon

    Icon identifier for the team.

    id

    Id of the team.

    members

    Members of the team.

    ownerUserId

    The id of the current owner of the team

Value Members

  1. val icon: Option[String]
  2. val id: SnowflakeType[Team]
  3. val members: Seq[TeamMember]
  4. val name: String
  5. val ownerUserId: UserId
  6. def productElementNames: Iterator[String]
    Definition Classes
    Product