tgbot-cpp
Venue.h
Go to the documentation of this file.
1 //
2 // Created by Andrea Giove on 17/04/16.
3 //
4 
5 #ifndef TGBOT_VENUE_H
6 #define TGBOT_VENUE_H
7 
8 #include <memory>
9 #include <string>
10 
11 #include "tgbot/types/Location.h"
12 
13 namespace TgBot {
14 
20 class Venue {
21 public:
22  typedef std::shared_ptr<Venue> Ptr;
23 
28 
32  std::string title;
33 
37  std::string address;
38 
42  std::string foursquare_id;
43 };
44 }
45 
46 #endif //TGBOT_VENUE_H
Definition: Api.h:49
Location::Ptr location
Venue location.
Definition: Venue.h:27
std::shared_ptr< Location > Ptr
Definition: Location.h:38
This object represents a venue.
Definition: Venue.h:20
std::string foursquare_id
Optional. Foursquare identifier of the venue.
Definition: Venue.h:42
std::shared_ptr< Venue > Ptr
Definition: Venue.h:22
std::string title
Name of the venue.
Definition: Venue.h:32
std::string address
Address of the venue.
Definition: Venue.h:37