| 1 | <?php |
||
| 5 | class Chat extends AbstractEntity |
||
| 6 | { |
||
| 7 | const ENTITY_TYPE = 'Chat'; |
||
| 8 | |||
| 9 | protected $id; |
||
| 10 | |||
| 11 | protected $type; |
||
| 12 | |||
| 13 | protected $title; |
||
| 14 | |||
| 15 | protected $username; |
||
| 16 | |||
| 17 | protected $first_name; |
||
| 18 | |||
| 19 | protected $last_name; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @return mixed |
||
| 23 | */ |
||
| 24 | public function getId() |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @return mixed |
||
| 31 | */ |
||
| 32 | public function getType() |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @return mixed |
||
| 39 | */ |
||
| 40 | public function getTitle() |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @return mixed |
||
| 47 | */ |
||
| 48 | public function getUsername() |
||
| 52 | |||
| 53 | /** |
||
| 54 | * @return mixed |
||
| 55 | */ |
||
| 56 | public function getFirstName() |
||
| 60 | |||
| 61 | /** |
||
| 62 | * @return mixed |
||
| 63 | */ |
||
| 64 | public function getLastName() |
||
| 68 | } |