1 | <?php |
||
9 | final class IBeacon |
||
10 | { |
||
11 | /** |
||
12 | * @var int |
||
13 | * |
||
14 | * @JMS\Type("integer") |
||
15 | * @JMS\SerializedName("index") |
||
16 | */ |
||
17 | private $index; |
||
18 | |||
19 | /** |
||
20 | * @var bool |
||
21 | * |
||
22 | * @JMS\Type("boolean") |
||
23 | * @JMS\SerializedName("enabled") |
||
24 | */ |
||
25 | private $enabled; |
||
26 | |||
27 | /** |
||
28 | * @var string |
||
29 | * |
||
30 | * @JMS\Type("string") |
||
31 | * @JMS\SerializedName("uuid") |
||
32 | */ |
||
33 | private $uuid; |
||
34 | |||
35 | /** |
||
36 | * @var integer |
||
37 | * |
||
38 | * @JMS\Type("integer") |
||
39 | * @JMS\SerializedName("major") |
||
40 | */ |
||
41 | private $major; |
||
42 | |||
43 | /** |
||
44 | * @var integer |
||
45 | * |
||
46 | * @JMS\Type("integer") |
||
47 | * @JMS\SerializedName("minor") |
||
48 | */ |
||
49 | private $minor; |
||
50 | |||
51 | /** |
||
52 | * @var integer |
||
53 | * |
||
54 | * @JMS\Type("integer") |
||
55 | * @JMS\SerializedName("power") |
||
56 | */ |
||
57 | private $power; |
||
58 | |||
59 | /** |
||
60 | * Broadcasting interval. |
||
61 | * |
||
62 | * @var integer |
||
63 | * |
||
64 | * @JMS\Type("integer") |
||
65 | * @JMS\SerializedName("interval") |
||
66 | */ |
||
67 | private $interval; |
||
68 | |||
69 | /** |
||
70 | * @var bool |
||
71 | * |
||
72 | * @JMS\Type("boolean") |
||
73 | * @JMS\SerializedName("non_strict_mode_enabled") |
||
74 | */ |
||
75 | private $nonStrictModeEnabled; |
||
76 | |||
77 | public function __construct( |
||
96 | |||
97 | public function index(): int |
||
101 | |||
102 | public function isEnabled(): ?bool |
||
106 | |||
107 | public function uuid(): ?string |
||
111 | |||
112 | public function major(): ?int |
||
116 | |||
117 | public function minor(): ?int |
||
121 | |||
122 | public function power(): ?int |
||
126 | |||
127 | public function interval(): ?int |
||
131 | |||
132 | public function nonStrictModeEnabled(): ?bool |
||
136 | } |
||
137 |