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
- Alphabetic
- By Inheritance
Inherited
- InviteGuild
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- 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
- val banner: Option[String]
- val description: Option[String]
- val features: Seq[GuildFeature]
- val icon: Option[String]
- val id: GuildId
- val name: String
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val splash: Option[String]
- val vanityUrlCode: Option[String]
- val verificationLevel: VerificationLevel
- val welcomeScreen: Option[WelcomeScreen]