View Source Telegex.Type.InputMediaVideo (Telegex v1.8.0)

Represents a video to be sent.

Summary

Types

@type t() :: %Telegex.Type.InputMediaVideo{
  caption: String.t() | nil,
  caption_entities: [Telegex.Type.MessageEntity.t()] | nil,
  duration: integer() | nil,
  has_spoiler: boolean() | nil,
  height: integer() | nil,
  media: String.t(),
  parse_mode: String.t() | nil,
  show_caption_above_media: boolean() | nil,
  supports_streaming: boolean() | nil,
  thumbnail: (Telegex.Type.InputFile.t() | String.t()) | nil,
  type: String.t(),
  width: integer() | nil
}