Sha256: ac7b882bc3ed46b8ecf1f66e881eba8dc86b19485b1dd1159d7fc552bc26a0ae
Contents?: true
Size: 722 Bytes
Versions: 1
Compression:
Stored size: 722 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 :parse_mode, 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.7.0 | lib/telegram/bot/types/inline_query_result_video.rb |