Packages

c

ackcord.data

InviteGuild

case class InviteGuild(id: GuildId, name: String, splash: Option[String], banner: Option[String], description: Option[String], icon: Option[String], features: Seq[GuildFeature], verificationLevel: VerificationLevel, vanityUrlCode: Option[String], welcomeScreen: Option[WelcomeScreen]) extends Product with Serializable

A partial guild with the information used by an invite

id

The guild id

name

The guild name

splash

The guild splash hash

banner

The banner of the guild

description

The description for the guild

icon

The guild icon hash

features

The guild features for the guild

verificationLevel

The verification level of the guild

vanityUrlCode

The vanity URL code for the guild

Source
invite.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. InviteGuild
  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 InviteGuild(id: GuildId, name: String, splash: Option[String], banner: Option[String], description: Option[String], icon: Option[String], features: Seq[GuildFeature], verificationLevel: VerificationLevel, vanityUrlCode: Option[String], welcomeScreen: Option[WelcomeScreen])

    id

    The guild id

    name

    The guild name

    splash

    The guild splash hash

    banner

    The banner of the guild

    description

    The description for the guild

    icon

    The guild icon hash

    features

    The guild features for the guild

    verificationLevel

    The verification level of the guild

    vanityUrlCode

    The vanity URL code for the guild

Value Members

  1. val banner: Option[String]
  2. val description: Option[String]
  3. val features: Seq[GuildFeature]
  4. val icon: Option[String]
  5. val id: GuildId
  6. val name: String
  7. def productElementNames: Iterator[String]
    Definition Classes
    Product
  8. val splash: Option[String]
  9. val vanityUrlCode: Option[String]
  10. val verificationLevel: VerificationLevel
  11. val welcomeScreen: Option[WelcomeScreen]