@@ -22,6 +22,7 @@ class Cluster extends ClusterModel implements Model
22
22
private ?bool $ malwareToolkitScansEnabled = null ;
23
23
private ?bool $ bubblewrapToolkitEnabled = null ;
24
24
private ?bool $ syncToolkitEnabled = null ;
25
+ private ?string $ description = null ;
25
26
private ?int $ id = null ;
26
27
private ?string $ createdAt = null ;
27
28
private ?string $ updatedAt = null ;
@@ -206,6 +207,18 @@ public function setSyncToolkitEnabled(?bool $syncToolkitEnabled): Cluster
206
207
return $ this ;
207
208
}
208
209
210
+ public function getDescription (): ?string
211
+ {
212
+ return $ this ->description ;
213
+ }
214
+
215
+ public function setDescription (?string $ description ): Cluster
216
+ {
217
+ $ this ->description = $ description ;
218
+
219
+ return $ this ;
220
+ }
221
+
209
222
public function getId (): ?int
210
223
{
211
224
return $ this ->id ;
@@ -260,6 +273,7 @@ public function fromArray(array $data): Cluster
260
273
->setMalwareToolkitScansEnabled (Arr::get ($ data , 'malware_toolkit_scans_enabled ' ))
261
274
->setBubblewrapToolkitEnabled (Arr::get ($ data , 'bubblewrap_toolkit_enabled ' ))
262
275
->setSyncToolkitEnabled (Arr::get ($ data , 'sync_toolkit_enabled ' ))
276
+ ->setDescription (Arr::get ($ data , 'description ' ))
263
277
->setId (Arr::get ($ data , 'id ' ))
264
278
->setCreatedAt (Arr::get ($ data , 'created_at ' ))
265
279
->setUpdatedAt (Arr::get ($ data , 'updated_at ' ));
@@ -283,6 +297,7 @@ public function toArray(): array
283
297
'malware_toolkit_scans_enabled ' => $ this ->isMalwareToolkitScansEnabled (),
284
298
'bubblewrap_toolkit_enabled ' => $ this ->isBubblewrapToolkitEnabled (),
285
299
'sync_toolkit_enabled ' => $ this ->isSyncToolkitEnabled (),
300
+ 'description ' => $ this ->getDescription (),
286
301
'id ' => $ this ->getId (),
287
302
'created_at ' => $ this ->getCreatedAt (),
288
303
'updated_at ' => $ this ->getUpdatedAt (),
0 commit comments