1 | <?php |
||
11 | final class General |
||
12 | { |
||
13 | /** |
||
14 | * @var boolean |
||
15 | * |
||
16 | * @JMS\Type("boolean") |
||
17 | * @JMS\SerializedName("motion_detection_enabled") |
||
18 | */ |
||
19 | private $motionDetectionEnabled; |
||
20 | |||
21 | /** |
||
22 | * @var NfcRecords[] |
||
23 | * |
||
24 | * @JMS\Type("array<Speicher210\Estimote\Model\Device\Settings\General\NfcRecords>") |
||
25 | * @JMS\SerializedName("nfc_records") |
||
26 | */ |
||
27 | private $nfcRecords; |
||
28 | |||
29 | public function isMotionDetectionEnabled(): bool |
||
33 | |||
34 | /** |
||
35 | * @return NfcRecords[] |
||
36 | */ |
||
37 | public function ndcRecords(): array |
||
41 | } |
||
42 |