1 | <?php |
||
13 | class AbstractInlineQueryResult extends BaseType |
||
14 | { |
||
15 | /** |
||
16 | * Type of the result, must be one of: article, photo, gif, mpeg4_gif, video |
||
17 | * |
||
18 | * @var string |
||
19 | */ |
||
20 | protected $type; |
||
21 | |||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | protected $id; |
||
26 | |||
27 | /** |
||
28 | * Title for the result |
||
29 | * |
||
30 | * @var string |
||
31 | */ |
||
32 | protected $title; |
||
33 | |||
34 | /** |
||
35 | * @return string |
||
36 | */ |
||
37 | public function getType() |
||
41 | |||
42 | /** |
||
43 | * @param string $type |
||
44 | */ |
||
45 | public function setType($type) |
||
49 | |||
50 | /** |
||
51 | * @return string |
||
52 | */ |
||
53 | public function getId() |
||
57 | |||
58 | /** |
||
59 | * @param string $id |
||
60 | */ |
||
61 | public function setId($id) |
||
65 | |||
66 | /** |
||
67 | * @return string |
||
68 | */ |
||
69 | public function getTitle() |
||
73 | |||
74 | /** |
||
75 | * @param string $title |
||
76 | */ |
||
77 | public function setTitle($title) |
||
81 | } |