Sha256: cc49149d2c7082f8e5db4f0ee85a38a22fc3a7afe539e521ffb51a8e03c8041d
Contents?: true
Size: 741 Bytes
Versions: 1
Compression:
Stored size: 741 Bytes
Contents
# frozen_string_literal: true module Telegram module Bot module Types class InlineQueryResultCachedVideo < Base attribute :type, Types::String.constrained(eql: 'video').default('video') attribute :id, Types::String attribute :video_file_id, Types::String attribute :title, Types::String attribute? :description, Types::String attribute? :caption, Types::String attribute? :parse_mode, Types::String attribute? :caption_entities, Types::Array.of(MessageEntity) attribute? :show_caption_above_media, Types::Bool 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-ruby-2.1.0 | lib/telegram/bot/types/inline_query_result_cached_video.rb |