class Telegram::API::InlineQueryResultVenue

Overview

Represents a venue. By default, the venue will be sent by the user. Alternatively, you can use input_message_content to send a message with the specified content instead of the venue. Note: This will only work in Telegram versions released after 9 April, 2016. Older clients will ignore them.

Defined in:

telegram/api/generated/types.cr

Constructors

Instance Method Summary

Instance methods inherited from class Telegram::API::Type

==(other) ==, client client

Constructor methods inherited from class Telegram::API::Type

new(pull : JSON::PullParser) new

Constructor Detail

def self.new(type : String, id : String, latitude : Float64, longitude : Float64, title : String, address : String, foursquare_id : String | Nil = nil, foursquare_type : String | Nil = nil, google_place_id : String | Nil = nil, google_place_type : String | Nil = nil, reply_markup : InlineKeyboardMarkup | Nil = nil, input_message_content : InputMessageContent | Nil = nil, thumb_url : String | Nil = nil, thumb_width : Int32 | Nil = nil, thumb_height : Int32 | Nil = nil) #

[View source]
def self.new(pull : JSON::PullParser) #

Represents a venue. By default, the venue will be sent by the user. Alternatively, you can use input_message_content to send a message with the specified content instead of the venue. Note: This will only work in Telegram versions released after 9 April, 2016. Older clients will ignore them.


[View source]

Instance Method Detail

def address : String #

Address of the venue


[View source]
def address=(address : String) #

Address of the venue


[View source]
def foursquare_id : String | Nil #

Optional. Foursquare identifier of the venue if known


[View source]
def foursquare_id=(foursquare_id : String | Nil) #

Optional. Foursquare identifier of the venue if known


[View source]
def foursquare_type : String | Nil #

Optional. Foursquare type of the venue, if known. (For example, "arts_entertainment/default", "arts_entertainment/aquarium" or "food/icecream".)


[View source]
def foursquare_type=(foursquare_type : String | Nil) #

Optional. Foursquare type of the venue, if known. (For example, "arts_entertainment/default", "arts_entertainment/aquarium" or "food/icecream".)


[View source]
def google_place_id : String | Nil #

Optional. Google Places identifier of the venue


[View source]
def google_place_id=(google_place_id : String | Nil) #

Optional. Google Places identifier of the venue


[View source]
def google_place_type : String | Nil #

Optional. Google Places type of the venue. (See supported types.)


[View source]
def google_place_type=(google_place_type : String | Nil) #

Optional. Google Places type of the venue. (See supported types.)


[View source]
def id : String #

Unique identifier for this result, 1-64 Bytes


[View source]
def id=(id : String) #

Unique identifier for this result, 1-64 Bytes


[View source]
def input_message_content : InputMessageContent | Nil #

Optional. Content of the message to be sent instead of the venue


[View source]
def input_message_content=(input_message_content : InputMessageContent | Nil) #

Optional. Content of the message to be sent instead of the venue


[View source]
def latitude : Float64 #

Latitude of the venue location in degrees


[View source]
def latitude=(latitude : Float64) #

Latitude of the venue location in degrees


[View source]
def longitude : Float64 #

Longitude of the venue location in degrees


[View source]
def longitude=(longitude : Float64) #

Longitude of the venue location in degrees


[View source]
def reply_markup : InlineKeyboardMarkup | Nil #

Optional. Inline keyboard attached to the message


[View source]
def reply_markup=(reply_markup : InlineKeyboardMarkup | Nil) #

Optional. Inline keyboard attached to the message


[View source]
def thumb_height : Int32 | Nil #

Optional. Thumbnail height


[View source]
def thumb_height=(thumb_height : Int32 | Nil) #

Optional. Thumbnail height


[View source]
def thumb_url : String | Nil #

Optional. Url of the thumbnail for the result


[View source]
def thumb_url=(thumb_url : String | Nil) #

Optional. Url of the thumbnail for the result


[View source]
def thumb_width : Int32 | Nil #

Optional. Thumbnail width


[View source]
def thumb_width=(thumb_width : Int32 | Nil) #

Optional. Thumbnail width


[View source]
def title : String #

Title of the venue


[View source]
def title=(title : String) #

Title of the venue


[View source]
def type : String #

Type of the result, must be venue


[View source]
def type=(type : String) #

Type of the result, must be venue


[View source]