LibTgBotPP
 All Classes Namespaces Files Functions Variables Typedefs Macros
Venue.cc
Go to the documentation of this file.
1 #include "Telegram/Venue.h"
2 
3 Telegram::Venue::Venue(Json::Value json) {
4 
5  this->location = new Location(json["location"]);
6  this->title = json["title"].asString();
7  this->address = json["address"].asString();
8  this->foursquare_id = json["foursquare_id"].asString();
9 }
std::string foursquare_id
Definition: Venue.h:18
std::string address
Definition: Venue.h:17
std::string title
Definition: Venue.h:16
Location * location
Definition: Venue.h:15
Venue(Json::Value)
Definition: Venue.cc:3