View Source ExGram.Model.InlineQueryResultVenue (ex_gram v0.52.2)

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.

Check the documentation of this model in https://core.telegram.org/bots/api#inlinequeryresultvenue

Summary

Types

@type t() :: %ExGram.Model.InlineQueryResultVenue{
  address: String.t(),
  foursquare_id: String.t() | nil,
  foursquare_type: String.t() | nil,
  google_place_id: String.t() | nil,
  google_place_type: String.t() | nil,
  id: String.t(),
  input_message_content: ExGram.Model.InputMessageContent.t() | nil,
  latitude: float(),
  longitude: float(),
  reply_markup: ExGram.Model.InlineKeyboardMarkup.t() | nil,
  thumbnail_height: integer() | nil,
  thumbnail_url: String.t() | nil,
  thumbnail_width: integer() | nil,
  title: String.t(),
  type: String.t()
}

Functions