| 1 | <?php |
||
| 14 | final class TaxInfo implements CreatableFromArray |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var string |
||
| 18 | */ |
||
| 19 | private $taxId; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | private $type; |
||
| 25 | |||
| 26 | private function __construct() |
||
| 29 | |||
| 30 | public static function createFromArray(array $data): self |
||
| 38 | |||
| 39 | public function getTaxId(): ?string |
||
| 43 | |||
| 44 | public function getType(): ?string |
||
| 48 | } |
||
| 49 |