tgbot-cpp
Loading...
Searching...
No Matches
Venue.h
Go to the documentation of this file.
1#ifndef TGBOT_VENUE_H
2#define TGBOT_VENUE_H
3
5
6#include <memory>
7#include <string>
8
9namespace TgBot {
10
16class Venue {
17public:
18 typedef std::shared_ptr<Venue> Ptr;
19
24
28 std::string title;
29
33 std::string address;
34
38 std::string foursquareId;
39
44 std::string foursquareType;
45
49 std::string googlePlaceId;
50
55 std::string googlePlaceType;
56};
57}
58
59#endif //TGBOT_VENUE_H
std::shared_ptr< Location > Ptr
Definition Location.h:16
This object represents a venue.
Definition Venue.h:16
std::string address
Address of the venue.
Definition Venue.h:33
std::string foursquareId
Optional. Foursquare identifier of the venue.
Definition Venue.h:38
std::string googlePlaceType
Optional. Google Places type of the venue. (See https://developers.google.com/places/web-service/supp...
Definition Venue.h:55
std::string foursquareType
Optional. Foursquare type of the venue. (For example, “arts_entertainment/default”,...
Definition Venue.h:44
Location::Ptr location
Venue location. Can't be a live location.
Definition Venue.h:23
std::shared_ptr< Venue > Ptr
Definition Venue.h:18
std::string googlePlaceId
Optional. Google Places identifier of the venue.
Definition Venue.h:49
std::string title
Name of the venue.
Definition Venue.h:28
Definition Api.h:39