Sha256: 445a4aa1e5e180960415174a4898d1fcf078bd4023b7944f427125b16c145747

Contents?: true

Size: 604 Bytes

Versions: 1

Compression:

Stored size: 604 Bytes

Contents

# frozen_string_literal: true

module Telegram
  module Bot
    module Types
      class InlineQueryResultArticle < Base
        attribute :type, String.default('article')
        attribute :id, String
        attribute :title, String
        attribute :input_message_content, InputMessageContent
        attribute :reply_markup, InlineKeyboardMarkup
        attribute :url, String
        attribute :hide_url, Boolean
        attribute :description, String
        attribute :thumb_url, String
        attribute :thumb_width, Integer
        attribute :thumb_height, Integer
      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_article.rb