1 | <?php |
||
9 | final class NfcRecords |
||
10 | { |
||
11 | /** |
||
12 | * @var string |
||
13 | * |
||
14 | * @JMS\Type("string") |
||
15 | * @JMS\SerializedName("data") |
||
16 | */ |
||
17 | private $data; |
||
18 | |||
19 | /** |
||
20 | * @var string |
||
21 | * |
||
22 | * @JMS\Type("string") |
||
23 | * @JMS\SerializedName("type") |
||
24 | */ |
||
25 | private $type; |
||
26 | |||
27 | public function data(): string |
||
31 | |||
32 | public function type(): string |
||
36 | } |
||
37 |