1 | <?php |
||
5 | class InlineQueryResultContact extends InlineQueryResultAbstract |
||
6 | { |
||
7 | const ENTITY_TYPE = 'InlineQueryResultContact'; |
||
8 | |||
9 | protected $phone_number; |
||
10 | |||
11 | protected $first_name; |
||
12 | |||
13 | protected $last_name; |
||
14 | |||
15 | /** |
||
16 | * @return mixed |
||
17 | */ |
||
18 | public function getPhoneNumber() |
||
22 | |||
23 | /** |
||
24 | * @param mixed $phone_number |
||
25 | * |
||
26 | * @return $this |
||
27 | */ |
||
28 | public function setPhoneNumber($phone_number) |
||
34 | |||
35 | /** |
||
36 | * @return mixed |
||
37 | */ |
||
38 | public function getFirstName() |
||
42 | |||
43 | /** |
||
44 | * @param mixed $first_name |
||
45 | * |
||
46 | * @return $this |
||
47 | */ |
||
48 | public function setFirstName($first_name) |
||
54 | |||
55 | /** |
||
56 | * @return mixed |
||
57 | */ |
||
58 | public function getLastName() |
||
62 | |||
63 | /** |
||
64 | * @param mixed $last_name |
||
65 | * |
||
66 | * @return $this |
||
67 | */ |
||
68 | public function setLastName($last_name) |
||
74 | } |
||
75 |