1 | <?php |
||
2 | |||
0 ignored issues
–
show
Coding Style
introduced
by
![]() |
|||
3 | namespace DMT\Insolvency\Model; |
||
4 | |||
5 | use JMS\Serializer\Annotation as JMS; |
||
6 | |||
7 | /** |
||
8 | * Class InspubAdresCBElem |
||
9 | * |
||
10 | * @JMS\XmlNamespace("http://www.rechtspraak.nl/namespaces/inspubber01") |
||
11 | * @JMS\XmlRoot("inspubAdresCBElem", namespace="http://www.rechtspraak.nl/namespaces/inspubber01") |
||
0 ignored issues
–
show
|
|||
12 | */ |
||
0 ignored issues
–
show
|
|||
13 | class InspubAdresCBElem implements PersoonType |
||
14 | { |
||
15 | /** |
||
0 ignored issues
–
show
|
|||
16 | * @JMS\SerializedName("datumBegin") |
||
17 | * @JMS\Type("DateTime<'Y-m-d'>") |
||
18 | * @JMS\XmlElement(cdata=false, namespace="http://www.rechtspraak.nl/namespaces/inspubber01") |
||
0 ignored issues
–
show
|
|||
19 | * |
||
20 | * @var \DateTime $datumBegin |
||
21 | */ |
||
22 | public $datumBegin; |
||
23 | |||
24 | /** |
||
0 ignored issues
–
show
|
|||
25 | * @JMS\SerializedName("straat") |
||
26 | * @JMS\Type("string") |
||
27 | * @JMS\XmlElement(cdata=false, namespace="http://www.rechtspraak.nl/namespaces/inspubber01") |
||
0 ignored issues
–
show
|
|||
28 | * |
||
29 | * @var string $straat |
||
30 | */ |
||
31 | public $straat; |
||
32 | |||
33 | /** |
||
0 ignored issues
–
show
|
|||
34 | * @JMS\SerializedName("huisnummer") |
||
35 | * @JMS\Type("int") |
||
36 | * @JMS\XmlElement(cdata=false, namespace="http://www.rechtspraak.nl/namespaces/inspubber01") |
||
0 ignored issues
–
show
|
|||
37 | * |
||
38 | * @var int $huisnummer |
||
39 | */ |
||
40 | public $huisnummer; |
||
41 | |||
42 | /** |
||
0 ignored issues
–
show
|
|||
43 | * @JMS\SerializedName("huisnummerToevoeging1") |
||
44 | * @JMS\Type("string") |
||
45 | * @JMS\XmlElement(cdata=false, namespace="http://www.rechtspraak.nl/namespaces/inspubber01") |
||
0 ignored issues
–
show
|
|||
46 | * |
||
47 | * @var string $huisnummerToevoeging1 |
||
48 | */ |
||
49 | public $huisnummerToevoeging1; |
||
50 | |||
51 | /** |
||
0 ignored issues
–
show
|
|||
52 | * @JMS\SerializedName("huisnummerToevoeging2") |
||
53 | * @JMS\Type("string") |
||
54 | * @JMS\XmlElement(cdata=false, namespace="http://www.rechtspraak.nl/namespaces/inspubber01") |
||
0 ignored issues
–
show
|
|||
55 | * |
||
56 | * @var string $huisnummerToevoeging2 |
||
57 | */ |
||
58 | public $huisnummerToevoeging2; |
||
59 | |||
60 | /** |
||
0 ignored issues
–
show
|
|||
61 | * @JMS\SerializedName("postcode") |
||
62 | * @JMS\Type("string") |
||
63 | * @JMS\XmlElement(cdata=false, namespace="http://www.rechtspraak.nl/namespaces/inspubber01") |
||
0 ignored issues
–
show
|
|||
64 | * |
||
65 | * @var string $postcode |
||
66 | */ |
||
67 | public $postcode; |
||
68 | |||
69 | /** |
||
0 ignored issues
–
show
|
|||
70 | * @JMS\SerializedName("plaats") |
||
71 | * @JMS\Type("string") |
||
72 | * @JMS\XmlElement(cdata=false, namespace="http://www.rechtspraak.nl/namespaces/inspubber01") |
||
0 ignored issues
–
show
|
|||
73 | * |
||
74 | * @var string $plaats |
||
75 | */ |
||
76 | public $plaats; |
||
77 | |||
78 | /** |
||
0 ignored issues
–
show
|
|||
79 | * @JMS\SerializedName("telefoonnummer") |
||
80 | * @JMS\Type("string") |
||
81 | * @JMS\XmlElement(cdata=false, namespace="http://www.rechtspraak.nl/namespaces/inspubber01") |
||
0 ignored issues
–
show
|
|||
82 | * |
||
83 | * @var string $telefoonnummer |
||
84 | */ |
||
85 | public $telefoonnummer; |
||
86 | } |
||
87 |