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

10 lines
258 B
C++

#include "Telegram/User.h"
Telegram::User::User(Json::Value json) {
this->id = json["id"].asUInt64();
this->first_name = json["first_name"].asString();
this->last_name = json["last_name"].asString();
this->username = json["username"].asString();
}