1 | <?php |
||
16 | class MessageAlert implements \JsonSerializable |
||
17 | { |
||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $title; |
||
22 | |||
23 | /** |
||
24 | * @var string |
||
25 | */ |
||
26 | protected $body; |
||
27 | |||
28 | /** |
||
29 | * @var string |
||
30 | */ |
||
31 | protected $titleLocKey; |
||
32 | |||
33 | /** |
||
34 | * @var string |
||
35 | */ |
||
36 | protected $titleLocArgs; |
||
37 | |||
38 | /** |
||
39 | * @var string |
||
40 | */ |
||
41 | protected $actionLocKey; |
||
42 | |||
43 | /** |
||
44 | * @var string |
||
45 | */ |
||
46 | protected $locKey; |
||
47 | |||
48 | /** |
||
49 | * @var string |
||
50 | */ |
||
51 | protected $locArgs; |
||
52 | |||
53 | /** |
||
54 | * @var string |
||
55 | */ |
||
56 | protected $launchImage; |
||
57 | |||
58 | /** |
||
59 | * @return array |
||
60 | */ |
||
61 | 9 | public function jsonSerialize() |
|
74 | |||
75 | /** |
||
76 | * @return string |
||
77 | */ |
||
78 | 1 | public function getTitle() |
|
82 | |||
83 | /** |
||
84 | * @param string $title |
||
85 | * |
||
86 | * @return self |
||
87 | */ |
||
88 | 1 | public function setTitle($title) |
|
94 | |||
95 | /** |
||
96 | * @return string |
||
97 | */ |
||
98 | 1 | public function getBody() |
|
102 | |||
103 | /** |
||
104 | * @param string $body |
||
105 | * |
||
106 | * @return self |
||
107 | */ |
||
108 | 2 | public function setBody($body) |
|
114 | |||
115 | /** |
||
116 | * @return string |
||
117 | */ |
||
118 | 1 | public function getTitleLocKey() |
|
122 | |||
123 | /** |
||
124 | * @param string $titleLocKey |
||
125 | * |
||
126 | * @return self |
||
127 | */ |
||
128 | 1 | public function setTitleLocKey($titleLocKey) |
|
134 | |||
135 | /** |
||
136 | * @return string |
||
137 | */ |
||
138 | 1 | public function getTitleLocArgs() |
|
142 | |||
143 | /** |
||
144 | * @param string $titleLocArgs |
||
145 | * |
||
146 | * @return self |
||
147 | */ |
||
148 | 1 | public function setTitleLocArgs($titleLocArgs) |
|
154 | |||
155 | /** |
||
156 | * @return string |
||
157 | */ |
||
158 | 1 | public function getActionLocKey() |
|
162 | |||
163 | /** |
||
164 | * @param string $actionLocKey |
||
165 | * |
||
166 | * @return self |
||
167 | */ |
||
168 | 1 | public function setActionLocKey($actionLocKey) |
|
174 | |||
175 | /** |
||
176 | * @return string |
||
177 | */ |
||
178 | 1 | public function getLocKey() |
|
182 | |||
183 | /** |
||
184 | * @param string $locKey |
||
185 | * |
||
186 | * @return self |
||
187 | */ |
||
188 | 1 | public function setLocKey($locKey) |
|
194 | |||
195 | /** |
||
196 | * @return string |
||
197 | */ |
||
198 | 1 | public function getLocArgs() |
|
202 | |||
203 | /** |
||
204 | * @param string $locArgs |
||
205 | * |
||
206 | * @return self |
||
207 | */ |
||
208 | 1 | public function setLocArgs($locArgs) |
|
214 | |||
215 | /** |
||
216 | * @return string |
||
217 | */ |
||
218 | 1 | public function getLaunchImage() |
|
222 | |||
223 | /** |
||
224 | * @param string $launchImage |
||
225 | * |
||
226 | * @return self |
||
227 | */ |
||
228 | 1 | public function setLaunchImage($launchImage) |
|
234 | } |
||
235 |