Files
QtTelegramBot/types/contact.cpp

12 lines
308 B
C++
Raw Permalink Normal View History

2015-12-29 16:44:16 +01:00
#include "contact.h"
using namespace Telegram;
Contact::Contact(QJsonObject contact)
{
phoneNumber = contact.value("phone_number").toString();
firstname = contact.value("first_name").toString();
lastname = contact.value("last_name").toString();
userId = contact.value("user_id").toInt();
}