Sha256: 32d3f8357d13baba41739997d6ea85d000c504d03a4bf923d56f34d56f59bf61
Contents?: true
Size: 772 Bytes
Versions: 9
Compression:
Stored size: 772 Bytes
Contents
# frozen_string_literal: true module Telegram module Bot module Types class InlineQueryResultVenue < Base attribute :type, String, default: 'venue' attribute :id, String attribute :latitude, Float attribute :longitude, Float attribute :title, String attribute :address, String attribute :foursquare_id, String attribute :foursquare_type, String attribute :google_place_id, String attribute :google_place_type, 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
9 entries across 9 versions & 2 rubygems