Packages

c

ackcord.data

ReceivedEmbedThumbnail

case class ReceivedEmbedThumbnail(url: String, proxyUrl: Option[String], height: Option[Int], width: Option[Int]) extends Product with Serializable

The thumbnail part of a received embed.

url

The url to the thumbnail.

proxyUrl

The proxy url of the thumbnail.

height

The height of the thumbnail.

width

The width of the thumbnail.

Source
message.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ReceivedEmbedThumbnail
  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 ReceivedEmbedThumbnail(url: String, proxyUrl: Option[String], height: Option[Int], width: Option[Int])

    url

    The url to the thumbnail.

    proxyUrl

    The proxy url of the thumbnail.

    height

    The height of the thumbnail.

    width

    The width of the thumbnail.

Value Members

  1. val height: Option[Int]
  2. def productElementNames: Iterator[String]
    Definition Classes
    Product
  3. val proxyUrl: Option[String]
  4. def toOutgoing: OutgoingEmbedThumbnail
  5. val url: String
  6. val width: Option[Int]