User.php 956 Bytes
Newer Older
LONGMAN's avatar
LONGMAN committed
1
<?php
Jack'lul's avatar
Jack'lul committed
2
/**
LONGMAN's avatar
LONGMAN committed
3
 * This file is part of the TelegramBot package.
LONGMAN's avatar
LONGMAN committed
4 5 6 7 8
 *
 * (c) Avtandil Kikabidze aka LONGMAN <akalongman@gmail.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
Jack'lul's avatar
Jack'lul committed
9 10
 */

LONGMAN's avatar
LONGMAN committed
11
namespace Longman\TelegramBot\Entities;
LONGMAN's avatar
LONGMAN committed
12

13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
/**
 * Class User
 *
 * @link https://core.telegram.org/bots/api#user
 *
 * @property int    $id         Unique identifier for this user or bot
 * @property string $first_name User's or bot’s first name
 * @property string $last_name  Optional. User's or bot’s last name
 * @property string $username   Optional. User's or bot’s username
 *
 * @method int    getId()        Unique identifier for this user or bot
 * @method string getFirstName() User's or bot’s first name
 * @method string getLastName()  Optional. User's or bot’s last name
 * @method string getUsername()  Optional. User's or bot’s username
 */
LONGMAN's avatar
LONGMAN committed
28
class User extends Entity
LONGMAN's avatar
LONGMAN committed
29
{
MBoretto's avatar
MBoretto committed
30

LONGMAN's avatar
LONGMAN committed
31
}