tgbot-cpp
InputVenueMessageContent.h
Go to the documentation of this file.
1 //
2 // Created by Konstantin Kukin on 26/12/16.
3 //
4 
5 
6 #ifndef TGBOT_INPUTVENUEMESSAGECONTENT_H
7 #define TGBOT_INPUTVENUEMESSAGECONTENT_H
8 
9 #include <memory>
10 #include <string>
11 
12 namespace TgBot {
13 
20 public:
21  typedef std::shared_ptr<InputVenueMessageContent> Ptr;
22 
24  InputMessageContent("InputVenueMessageContent")
25  {}
26 
30  float latitude;
31 
35  float longitude;
36 
40  std::string title;
41 
45  std::string address;
46 
50  std::string foursquareId;
51 
53 };
54 }
55 
56 #endif //TGBOT_INPUTVENUEMESSAGECONTENT_H
std::string foursquareId
Optional. Foursquare identifier of the venue, if known.
Definition: Api.h:47
Represents the content of a venue message to be sent as the result of an inline query.
This object represents the content of a message to be sent as a result of an inline query...
std::string address
Address of the venue.
float longitude
Longitude of the location in degrees.
float latitude
Latitude of the location in degrees.
std::string title
Name of the venue.
std::shared_ptr< InputVenueMessageContent > Ptr