Sha256: 3e3070590e9bd5f6d8f7a796ce36d95449bba2194e38f8b3fc4cb4be152e7189

Contents?: true

Size: 571 Bytes

Versions: 1

Compression:

Stored size: 571 Bytes

Contents

# frozen_string_literal: true

module Telegram
  module Bot
    module Types
      class InlineQueryResultLocation < Base
        attribute :type, String, default: 'location'
        attribute :id, String
        attribute :latitude, Float
        attribute :longitude, Float
        attribute :title, String
        attribute :reply_markup, InlineKeyboardMarkup
        attribute :input_message_content, InputMessageContent
        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.6.2 lib/telegram/bot/types/inline_query_result_location.rb