Sha256: 4f85606d780cca6bc751270aaca3b7034242d4d6bc51dbe19848c87e2f01cd41
Contents?: true
Size: 913 Bytes
Versions: 1
Compression:
Stored size: 913 Bytes
Contents
# frozen_string_literal: true module Telegram module Bot module Types class InlineQueryResultVideo < Base attribute :type, Types::String.constrained(eql: 'video').default('video') attribute :id, Types::String attribute :video_url, Types::String attribute :mime_type, Types::String attribute :thumbnail_url, Types::String attribute :title, Types::String attribute? :caption, Types::String attribute? :parse_mode, Types::String attribute? :caption_entities, Types::Array.of(MessageEntity) attribute? :video_width, Types::Integer attribute? :video_height, Types::Integer attribute? :video_duration, Types::Integer attribute? :description, Types::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-ruby-2.0.0 | lib/telegram/bot/types/inline_query_result_video.rb |