case class GuildPreview(id: GuildId, name: String, icon: Option[String], splash: Option[String], discoverySplash: Option[String], emojis: Seq[RawEmoji], features: Seq[GuildFeature], approximateMemberCount: Int, approximatePresenceCount: Int, description: Option[String]) extends Product with Serializable
A preview of a public guild
- id
The id of the guild.
- name
The name of the guild.
- icon
The icon hash.
- splash
The splash hash.
- discoverySplash
The discovery splash hash.
- emojis
The emojis of the guild.
- features
The enabled guild features.
- approximateMemberCount
An approximate count of the members in the guild.
- approximatePresenceCount
An approximate count of the presences in the guild.
- description
A description for the guild
- Source
- guild.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- GuildPreview
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new GuildPreview(id: GuildId, name: String, icon: Option[String], splash: Option[String], discoverySplash: Option[String], emojis: Seq[RawEmoji], features: Seq[GuildFeature], approximateMemberCount: Int, approximatePresenceCount: Int, description: Option[String])
- id
The id of the guild.
- name
The name of the guild.
- icon
The icon hash.
- splash
The splash hash.
- discoverySplash
The discovery splash hash.
- emojis
The emojis of the guild.
- features
The enabled guild features.
- approximateMemberCount
An approximate count of the members in the guild.
- approximatePresenceCount
An approximate count of the presences in the guild.
- description
A description for the guild
Value Members
- val approximateMemberCount: Int
- val approximatePresenceCount: Int
- val description: Option[String]
- val discoverySplash: Option[String]
- val emojis: Seq[RawEmoji]
- 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]