Packages

c

ackcord.data

ReceivedEmbedImage

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

The image part of a received embed.

url

The url of the image.

proxyUrl

The proxy url of the image.

height

The height of the image.

width

The width of the image.

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

    url

    The url of the image.

    proxyUrl

    The proxy url of the image.

    height

    The height of the image.

    width

    The width of the image.

Value Members

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