Sha256: 25f8e8c5f064d7f908dfaaa6a51cce099349a57f29bff6e9528b8bb75fd9ebb5

Contents?: true

Size: 685 Bytes

Versions: 1

Compression:

Stored size: 685 Bytes

Contents

# frozen_string_literal: true

module Telegram
  module Bot
    module Types
      class InlineQueryResultVideo < Base
        attribute :type, String, default: 'video'
        attribute :id, String
        attribute :video_url, String
        attribute :mime_type, String
        attribute :thumb_url, String
        attribute :title, String
        attribute :caption, String
        attribute :video_width, Integer
        attribute :video_height, Integer
        attribute :video_duration, Integer
        attribute :description, String
        attribute :reply_markup, InlineKeyboardMarkup
        attribute :input_message_content, InputMessageContent
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
telegram-bot-types-0.6.2 lib/telegram/bot/types/inline_query_result_video.rb