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 
19 class Venue {
20 public:
21  typedef std::shared_ptr<Venue> Ptr;
22 
27 
31  std::string title;
32 
36  std::string address;
37 
41  std::string foursquare_id;
42 };
43 }
44 
45 #endif //TGBOT_VENUE_H
Definition: Api.h:44
Location::Ptr location
Definition: Venue.h:26
std::shared_ptr< Location > Ptr
Definition: Location.h:37
std::string foursquare_id
Definition: Venue.h:41
std::shared_ptr< Venue > Ptr
Definition: Venue.h:21
std::string title
Definition: Venue.h:31
std::string address
Definition: Venue.h:36