LibTgBotPP/src/Venue.cc
2016-04-30 07:18:32 +02:00

10 lines
272 B
C++

#include "Telegram/Venue.h"
Telegram::Venue::Venue(Json::Value json) {
this->location = new Location(json["location"]);
this->title = json["title"].asString();
this->address = json["address"].asString();
this->foursquare_id = json["foursquare_id"].asString();
}