1 | <?php |
||
7 | final class OrderProductPerfum extends OrderProduct |
||
8 | { |
||
9 | /** |
||
10 | * @var string Тип кода маркировки |
||
11 | */ |
||
12 | private $cisType; |
||
13 | |||
14 | /** |
||
15 | * @var string ИНН/УНБ (или аналог) экспортера (становится обязательным, если поле releaseMethod = «CROSSBORDER») |
||
16 | */ |
||
17 | private $exporterTaxpayerId; |
||
18 | |||
19 | |||
20 | public function __construct(string $gtin, int $quantity, string $serialNumberType, int $templateId, string $cisType) |
||
26 | |||
27 | public function getCisType(): string |
||
31 | |||
32 | public function getExporterTaxpayerId(): ?string |
||
36 | |||
37 | public function setExporterTaxpayerId(?string $exporterTaxpayerId): void |
||
41 | } |