|
12 | 12 | public function __construct( |
13 | 13 | #[Serializer\SerializedName('Name')] |
14 | 14 | #[Serializer\XmlElement(cdata: false)] |
15 | | - private MultilanguageString $name, |
| 15 | + public MultilanguageString $name, |
16 | 16 | #[Serializer\SerializedName('PostalAddress')] |
17 | | - private ?PostalAddress $postalAddress = null, |
| 17 | + public ?PostalAddress $postalAddress = null, |
18 | 18 | #[Serializer\XmlAttribute] |
19 | 19 | #[Serializer\SerializedName('addressID')] |
20 | | - private ?string $addressId = null, |
| 20 | + public ?string $addressId = null, |
21 | 21 | #[Serializer\XmlAttribute] |
22 | 22 | #[Serializer\SerializedName('addressIDDomain')] |
23 | | - private ?string $addressIdDomain = null, |
| 23 | + public ?string $addressIdDomain = null, |
24 | 24 | #[Serializer\SerializedName('Email')] |
25 | 25 | #[Serializer\XmlElement(cdata: false)] |
26 | | - private ?string $email = null, |
| 26 | + public ?string $email = null, |
27 | 27 | #[Serializer\SerializedName('Phone')] |
28 | 28 | #[Serializer\XmlElement(cdata: false)] |
29 | | - private ?Phone $phone = null, |
| 29 | + public ?Phone $phone = null, |
30 | 30 | #[Serializer\SerializedName('Fax')] |
31 | 31 | #[Serializer\XmlElement(cdata: false)] |
32 | | - private ?string $fax = null, |
| 32 | + public ?string $fax = null, |
33 | 33 | #[Serializer\SerializedName('URL')] |
34 | 34 | #[Serializer\XmlElement(cdata: false)] |
35 | | - private ?string $url = null, |
| 35 | + public ?string $url = null, |
36 | 36 | ) { |
37 | 37 | } |
38 | | - |
39 | | - public function getAddressId(): ?string |
40 | | - { |
41 | | - return $this->addressId; |
42 | | - } |
43 | | - |
44 | | - public function getAddressIdDomain(): ?string |
45 | | - { |
46 | | - return $this->addressIdDomain; |
47 | | - } |
48 | | - |
49 | | - public function getName(): MultilanguageString |
50 | | - { |
51 | | - return $this->name; |
52 | | - } |
53 | | - |
54 | | - public function getPostalAddress(): ?PostalAddress |
55 | | - { |
56 | | - return $this->postalAddress; |
57 | | - } |
58 | | - |
59 | | - public function getEmail(): ?string |
60 | | - { |
61 | | - return $this->email; |
62 | | - } |
63 | | - |
64 | | - public function getPhone(): ?Phone |
65 | | - { |
66 | | - return $this->phone; |
67 | | - } |
68 | | - |
69 | | - public function getFax(): ?string |
70 | | - { |
71 | | - return $this->fax; |
72 | | - } |
73 | | - |
74 | | - public function getUrl(): ?string |
75 | | - { |
76 | | - return $this->url; |
77 | | - } |
78 | 38 | } |
0 commit comments