Struct telegram_typings::InlineQueryResultVenue [] [src]

pub struct InlineQueryResultVenue {
    pub type_tl: String,
    pub id: String,
    pub latitude: f64,
    pub longitude: f64,
    pub title: String,
    pub address: String,
    pub foursquare_id: Option<String>,
    pub reply_markup: Option<Box<InlineKeyboardMarkup>>,
    pub input_message_content: Option<Box<InputMessageContent>>,
    pub thumb_url: Option<String>,
    pub thumb_width: Option<i64>,
    pub thumb_height: Option<i64>,
}

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.

Fields

Type of the result, must be venue

Unique identifier for this result, 1-64 Bytes

Latitude of the venue location in degrees

Longitude of the venue location in degrees

Title of the venue

Address of the venue

Foursquare identifier of the venue if known

Content of the message to be sent instead of the venue

Url of the thumbnail for the result

Thumbnail width

Thumbnail height

Trait Implementations

impl Debug for InlineQueryResultVenue
[src]

[src]

Formats the value using the given formatter.

impl Clone for InlineQueryResultVenue
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more