| 1 | <?php |
||
| 17 | class ShopBillingData implements ShopBillingDataInterface |
||
| 18 | { |
||
| 19 | /** @var int|null */ |
||
| 20 | protected $id; |
||
| 21 | |||
| 22 | /** @var string|null */ |
||
| 23 | protected $company; |
||
| 24 | |||
| 25 | /** @var string|null */ |
||
| 26 | protected $taxId; |
||
| 27 | |||
| 28 | /** @var string|null */ |
||
| 29 | protected $countryCode; |
||
| 30 | |||
| 31 | /** @var string|null */ |
||
| 32 | protected $street; |
||
| 33 | |||
| 34 | /** @var string|null */ |
||
| 35 | protected $city; |
||
| 36 | |||
| 37 | /** @var string|null */ |
||
| 38 | protected $postcode; |
||
| 39 | |||
| 40 | public function getCompany(): ?string |
||
| 44 | |||
| 45 | public function setCompany(?string $company): void |
||
| 49 | |||
| 50 | public function getTaxId(): ?string |
||
| 54 | |||
| 55 | public function setTaxId(?string $taxId): void |
||
| 59 | |||
| 60 | public function getCountryCode(): ?string |
||
| 64 | |||
| 65 | public function setCountryCode(?string $countryCode): void |
||
| 69 | |||
| 70 | public function getStreet(): ?string |
||
| 74 | |||
| 75 | public function setStreet(?string $street): void |
||
| 79 | |||
| 80 | public function getCity(): ?string |
||
| 84 | |||
| 85 | public function setCity(?string $city): void |
||
| 89 | |||
| 90 | public function getPostcode(): ?string |
||
| 94 | |||
| 95 | public function setPostcode(?string $postcode): void |
||
| 99 | } |
||
| 100 |