Sha256: ac89103f510e80e22015bc075ff1d4f0fa2144553cb93995c94196605700e355
Contents?: true
Size: 832 Bytes
Versions: 3
Compression:
Stored size: 832 Bytes
Contents
# frozen_string_literal: true module Telegram module Bot module Types class InlineQueryResultGif < Base attribute :type, Types::String.default('gif') attribute :id, Types::String attribute :gif_url, Types::String attribute? :gif_width, Types::Integer attribute? :gif_height, Types::Integer attribute? :gif_duration, Types::Integer attribute :thumb_url, Types::String attribute? :thumb_mime_type, Types::String attribute? :title, Types::String attribute? :caption, Types::String attribute? :parse_mode, Types::String attribute? :caption_entities, Types::Array.of(MessageEntity) attribute? :reply_markup, InlineKeyboardMarkup attribute? :input_message_content, InputMessageContent end end end end
Version data entries
3 entries across 3 versions & 1 rubygems