Struct actix_telegram::types::InputVenueMessageContent[][src]

pub struct InputVenueMessageContent {
    pub latitude: Float,
    pub longitude: Float,
    pub title: String,
    pub address: String,
    pub foursquare_id: Option<String>,
    pub foursquare_type: Option<String>,
}

Represents the content of a venue message to be sent as the result of an inline query.

Fields

Latitude of the venue in degrees

Longitude of the venue in degrees

Name of the venue

Address of the venue

Foursquare identifier of the venue, if known

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

Trait Implementations

impl Debug for InputVenueMessageContent
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations