mayoral/telegrammer

View on GitHub
lib/telegrammer/data_types/inline_query_result/inline_query_result_venue.rb

Summary

Maintainability
A
55 mins
Test Coverage
module Telegrammer
  module DataTypes
    # Telegram InlineQueryResultVenue data type
    #
    # @attr [String] type Type of the result, must be article
    # @attr [String] id Unique identifier for this result, 1-64 Bytes
    # @attr [Float] latitude Latitude of the venue location in degrees
    # @attr [Float] longitude Longitude of the venue location in degrees
    # @attr [String] title Title of the venue
    # @attr [String] address Address of the venue
    # @attr [String] foursquare_id Optional. Foursquare identifier of the venue if known
    # @attr [Telegrammer::DataTypes::InlineKeyboardMarkup] reply_markup Optional. Inline keyboard attached to the message
    # @attr [Telegrammer::DataTypes::InputMessageContent] input_message_content Content of the message to be sent
    # @attr [String] thumb_url Optional. Url of the thumbnail for the result
    # @attr [Integer] thumb_width Optional. Thumbnail width
    # @attr [Integer] thumb_height Optional. Thumbnail height
    #
    # See more at https://core.telegram.org/bots/api#inlinequeryresultvenue
    class InlineQueryResultVenue < Telegrammer::DataTypes::Base
      attribute :type, String, default: 'article'
      attribute :id, String
      attribute :latitude, Float
      attribute :longitude, Float
      attribute :title, String
      attribute :address, String
      attribute :foursquare_id, 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