1 | <?php |
||
19 | class AttachmentAction extends AbstractModel |
||
20 | { |
||
21 | /** |
||
22 | * @var string |
||
23 | */ |
||
24 | private $name; |
||
25 | |||
26 | /** |
||
27 | * @var string |
||
28 | */ |
||
29 | private $text; |
||
30 | |||
31 | /** |
||
32 | * @var string |
||
33 | */ |
||
34 | private $type; |
||
35 | |||
36 | /** |
||
37 | * @var string |
||
38 | */ |
||
39 | private $value; |
||
40 | |||
41 | /** |
||
42 | * @var string |
||
43 | */ |
||
44 | private $style; |
||
45 | |||
46 | /** |
||
47 | * @return string |
||
48 | */ |
||
49 | 2 | public function getName() |
|
53 | |||
54 | /** |
||
55 | * @param string $name |
||
56 | */ |
||
57 | public function setName($name) |
||
61 | |||
62 | /** |
||
63 | * @return string |
||
64 | */ |
||
65 | 2 | public function getText() |
|
69 | |||
70 | /** |
||
71 | * @param string $text |
||
72 | */ |
||
73 | public function setText($text) |
||
77 | |||
78 | /** |
||
79 | * @return string |
||
80 | */ |
||
81 | 2 | public function getType() |
|
85 | |||
86 | /** |
||
87 | * @param string $type |
||
88 | */ |
||
89 | public function setType($type) |
||
93 | |||
94 | /** |
||
95 | * @return string |
||
96 | */ |
||
97 | 2 | public function getValue() |
|
101 | |||
102 | /** |
||
103 | * @param string $value |
||
104 | */ |
||
105 | public function setValue($value) |
||
109 | |||
110 | /** |
||
111 | * @return string |
||
112 | */ |
||
113 | 2 | public function getStyle() |
|
117 | |||
118 | /** |
||
119 | * @param string $style |
||
120 | */ |
||
121 | public function setStyle($style) |
||
125 | } |
||
126 |