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