case class OutgoingEmbed(title: Option[String] = None, description: Option[String] = None, url: Option[String] = None, timestamp: Option[OffsetDateTime] = None, color: Option[Int] = None, footer: Option[OutgoingEmbedFooter] = None, image: Option[OutgoingEmbedImage] = None, video: Option[OutgoingEmbedVideo] = None, thumbnail: Option[OutgoingEmbedThumbnail] = None, author: Option[OutgoingEmbedAuthor] = None, fields: Seq[EmbedField] = Seq.empty) extends Product with Serializable
An outgoing 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.
- author
The author part of the embed.
- fields
The fields of the embed.
- Source
- message.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- OutgoingEmbed
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new OutgoingEmbed(title: Option[String] = None, description: Option[String] = None, url: Option[String] = None, timestamp: Option[OffsetDateTime] = None, color: Option[Int] = None, footer: Option[OutgoingEmbedFooter] = None, image: Option[OutgoingEmbedImage] = None, video: Option[OutgoingEmbedVideo] = None, thumbnail: Option[OutgoingEmbedThumbnail] = None, author: Option[OutgoingEmbedAuthor] = None, fields: Seq[EmbedField] = Seq.empty)
- 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.
- author
The author part of the embed.
- fields
The fields of the embed.
Value Members
- val author: Option[OutgoingEmbedAuthor]
- val color: Option[Int]
- val description: Option[String]
- val fields: Seq[EmbedField]
- val footer: Option[OutgoingEmbedFooter]
- val image: Option[OutgoingEmbedImage]
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val thumbnail: Option[OutgoingEmbedThumbnail]
- val timestamp: Option[OffsetDateTime]
- val title: Option[String]
- def totalCharAmount: Int
The total amount of characters in this embed so far.
- val url: Option[String]
- val video: Option[OutgoingEmbedVideo]