Packages

c

ackcord.data

ReceivedEmbedVideo

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

The video part of a received embed.

url

The url of the video.

proxyUrl

The proxy url of the video.

height

The height of the video.

width

The width of the video.

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

    url

    The url of the video.

    proxyUrl

    The proxy url of the video.

    height

    The height of the video.

    width

    The width of the video.

Value Members

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