Telegex.send_video_note

You're seeing just the function send_video_note, go back to Telegex module for more information.
Link to this function

send_video_note(chat_id, video_note, optionals \\ [])

View Source

Specs

send_video_note(
  integer() | String.t(),
  Telegex.Model.InputFile.t() | String.t(),
  duration: integer(),
  length: integer(),
  thumb: Telegex.Model.InputFile.t() | String.t(),
  disable_notification: boolean(),
  reply_to_message_id: integer(),
  allow_sending_without_reply: boolean(),
  reply_markup:
    Telegex.Model.InlineKeyboardMarkup.t()
    | Telegex.Model.ReplyKeyboardMarkup.t()
    | Telegex.Model.ReplyKeyboardRemove.t()
    | Telegex.Model.ForceReply.t()
) :: {:ok, Telegex.Model.Message.t()} | {:error, Telegex.Model.errors()}

As of v.4.0, Telegram clients support rounded square mp4 videos of up to 1 minute long. Use this method to send video messages. On success, the sent Telegex.Model.Message is returned.