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 VerwijderdePublicatieLijst |
||
9 | * |
||
10 | * @JMS\XmlNamespace("http://www.rechtspraak.nl/namespaces/cir01") |
||
11 | * @JMS\XmlRoot("verwijderdePublicatieLijst", namespace="http://www.rechtspraak.nl/namespaces/inspubber01") |
||
0 ignored issues
–
show
|
|||
12 | */ |
||
0 ignored issues
–
show
|
|||
13 | class VerwijderdePublicatieLijst |
||
14 | { |
||
15 | /** |
||
0 ignored issues
–
show
|
|||
16 | * @JMS\SerializedName("extractiedatum") |
||
17 | * @JMS\Type("DateTime<'Y-m-d\TH:i:sP'>") |
||
18 | * @JMS\XmlAttribute() |
||
19 | * |
||
20 | * @var \DateTime $extractiedatum |
||
21 | */ |
||
22 | public $extractiedatum; |
||
23 | |||
24 | /** |
||
0 ignored issues
–
show
|
|||
25 | * @JMS\Type("array<DMT\Insolvency\Model\VerwijderdeInsolventie>") |
||
26 | * @JMS\XmlList(inline=true, entry="verwijderdeInsolventie", namespace="http://www.rechtspraak.nl/namespaces/inspubber01") |
||
0 ignored issues
–
show
|
|||
27 | * |
||
28 | * @var VerwijderdeInsolventie[] $verwijderdeInsolventie |
||
29 | */ |
||
30 | public $verwijderdeInsolventie; |
||
31 | } |