Video

final case class Video(fileId: String, fileUniqueId: String, width: Int, height: Int, duration: Int, thumb: Option[PhotoSize], fileName: Option[String], mimeType: Option[String], fileSize: Option[Long])

This object represents a video file.

Value parameters:
duration

Duration of the video in seconds as defined by sender

fileId

Identifier for this file, which can be used to download or reuse the file

fileName

Optional. Original filename as defined by sender

fileSize

Optional. File size in bytes. It can be bigger than 2^31 and some programming languages may have difficulty/silent defects in interpreting it. But it has at most 52 significant bits, so a signed 64-bit integer or double-precision float type are safe for storing this value.

fileUniqueId

Unique identifier for this file, which is supposed to be the same over time and for different bots. Can't be used to download or reuse the file.

height

Video height as defined by sender

mimeType

Optional. MIME type of the file as defined by sender

thumb

Optional. Video thumbnail

width

Video width as defined by sender

trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Inherited methods

def productElementNames: Iterator[String]
Inherited from:
Product
def productIterator: Iterator[Any]
Inherited from:
Product