case class ReceivedEmbed(title: Option[String], type: Option[EmbedType], description: Option[String], url: Option[String], timestamp: Option[OffsetDateTime], color: Option[Int], footer: Option[ReceivedEmbedFooter], image: Option[ReceivedEmbedImage], thumbnail: Option[ReceivedEmbedThumbnail], video: Option[ReceivedEmbedVideo], provider: Option[ReceivedEmbedProvider], author: Option[ReceivedEmbedAuthor], fields: Option[Seq[EmbedField]]) extends Product with Serializable
A received embed.
- title
The title of the embed.
- description
The embed description or main text.
- url
The url of the embed.
- timestamp
The timestamp of the embed.
- color
The color of the embed
- footer
The footer part of the embed.
- image
The image part of the embed.
- thumbnail
The thumbnail part of the embed.
- video
The video part of the embed.
- provider
The provider part of the embed.
- author
The author part of the embed.
- fields
The fields of the embed.
- Source
- message.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ReceivedEmbed
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new ReceivedEmbed(title: Option[String], type: Option[EmbedType], description: Option[String], url: Option[String], timestamp: Option[OffsetDateTime], color: Option[Int], footer: Option[ReceivedEmbedFooter], image: Option[ReceivedEmbedImage], thumbnail: Option[ReceivedEmbedThumbnail], video: Option[ReceivedEmbedVideo], provider: Option[ReceivedEmbedProvider], author: Option[ReceivedEmbedAuthor], fields: Option[Seq[EmbedField]])
- title
The title of the embed.
- description
The embed description or main text.
- url
The url of the embed.
- timestamp
The timestamp of the embed.
- color
The color of the embed
- footer
The footer part of the embed.
- image
The image part of the embed.
- thumbnail
The thumbnail part of the embed.
- video
The video part of the embed.
- provider
The provider part of the embed.
- author
The author part of the embed.
- fields
The fields of the embed.
Value Members
- val author: Option[ReceivedEmbedAuthor]
- val color: Option[Int]
- val description: Option[String]
- val fields: Option[Seq[EmbedField]]
- val footer: Option[ReceivedEmbedFooter]
- val image: Option[ReceivedEmbedImage]
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val provider: Option[ReceivedEmbedProvider]
- val thumbnail: Option[ReceivedEmbedThumbnail]
- val timestamp: Option[OffsetDateTime]
- val title: Option[String]
- def toOutgoing: OutgoingEmbed
- val type: Option[EmbedType]
- val url: Option[String]
- val video: Option[ReceivedEmbedVideo]