Sha256: 87ebc22fe1059c2fcefc11fde36e04264e2a89e12e1bec6c7aa864d44a277929
Contents?: true
Size: 771 Bytes
Versions: 1
Compression:
Stored size: 771 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
telegram-bot-types-0.7.0 | lib/telegram/bot/types/inline_query_result_venue.rb |