1 | <?php |
||
5 | class Action extends AbstractBaseSlack |
||
6 | { |
||
7 | private $name; |
||
8 | private $text; |
||
9 | private $value; |
||
10 | private $type; |
||
11 | |||
12 | /** |
||
13 | * @return string |
||
14 | */ |
||
15 | 1 | public function getName(): string |
|
19 | |||
20 | /** |
||
21 | * @param string $name |
||
22 | */ |
||
23 | 3 | public function setName(string $name) |
|
27 | |||
28 | /** |
||
29 | * @return string |
||
30 | */ |
||
31 | 2 | public function getText() |
|
35 | |||
36 | /** |
||
37 | * @param string $text |
||
38 | */ |
||
39 | 1 | public function setText(string $text) |
|
43 | |||
44 | /** |
||
45 | * @return string |
||
46 | */ |
||
47 | 1 | public function getValue(): string |
|
51 | |||
52 | /** |
||
53 | * @param string $value |
||
54 | */ |
||
55 | 3 | public function setValue(string $value) |
|
59 | |||
60 | /** |
||
61 | * @return string |
||
62 | */ |
||
63 | 1 | public function getType(): string |
|
67 | |||
68 | /** |
||
69 | * @param string $type |
||
70 | */ |
||
71 | 4 | public function setType(string $type) |
|
75 | } |
||
76 |