Sha256: ade587234b6bc133bcf511e218c402444a0b91df0c284d99a7476459784424d1
Contents?: true
Size: 743 Bytes
Versions: 1
Compression:
Stored size: 743 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 :horizontal_accuracy, Float attribute :live_period, Integer attribute :heading, Integer attribute :proximity_alert_radius, Integer 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_location.rb |