You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
272 B

#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();
}