Packages

c

ackcord.data

ReceivedEmbed

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
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ReceivedEmbed
  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 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

  1. val author: Option[ReceivedEmbedAuthor]
  2. val color: Option[Int]
  3. val description: Option[String]
  4. val fields: Option[Seq[EmbedField]]
  5. val footer: Option[ReceivedEmbedFooter]
  6. val image: Option[ReceivedEmbedImage]
  7. def productElementNames: Iterator[String]
    Definition Classes
    Product
  8. val provider: Option[ReceivedEmbedProvider]
  9. val thumbnail: Option[ReceivedEmbedThumbnail]
  10. val timestamp: Option[OffsetDateTime]
  11. val title: Option[String]
  12. def toOutgoing: OutgoingEmbed
  13. val type: Option[EmbedType]
  14. val url: Option[String]
  15. val video: Option[ReceivedEmbedVideo]