Sha256: 492070c2f01815b17e864c9348e2bd2a13157d0a7af60fbe12635bd26ed54415

Contents?: true

Size: 634 Bytes

Versions: 4

Compression:

Stored size: 634 Bytes

Contents

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 :message_text, String
        attribute :parse_mode, String
        attribute :disable_web_page_preview, Boolean
        attribute :video_width, Integer
        attribute :video_height, Integer
        attribute :video_duration, Integer
        attribute :thumb_url, String
        attribute :title, String
        attribute :description, String
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
telegram-bot-ruby-0.4.2 lib/telegram/bot/types/inline_query_result_video.rb
telegram-bot-types-0.2.0 lib/telegram/bot/types/inline_query_result_video.rb
telegram-bot-ruby-0.4.1 lib/telegram/bot/types/inline_query_result_video.rb
telegram-bot-ruby-0.4.0 lib/telegram/bot/types/inline_query_result_video.rb