1 | <?php |
||
9 | final class FacadeCisItemResponse |
||
10 | { |
||
11 | public const STATUS_EMITTED = 'EMITTED'; |
||
12 | public const STATUS_APPLIED = 'APPLIED'; |
||
13 | public const STATUS_INTRODUCED = 'INTRODUCED'; |
||
14 | public const STATUS_RETIRED = 'RETIRED'; |
||
15 | public const STATUS_ISSUED = 'ISSUED'; |
||
16 | |||
17 | /** |
||
18 | * @var string |
||
19 | */ |
||
20 | private $cis; |
||
21 | /** |
||
22 | * @var string |
||
23 | */ |
||
24 | private $gtin; |
||
25 | /** |
||
26 | * @var string |
||
27 | * @SerializedName("producerName") |
||
28 | */ |
||
29 | private $producerName; |
||
30 | /** |
||
31 | * @var string |
||
32 | */ |
||
33 | private $status; |
||
34 | /** |
||
35 | * @var int |
||
36 | * @SerializedName("emissionDate") |
||
37 | */ |
||
38 | private $emissionDate; |
||
39 | /** |
||
40 | * @var string |
||
41 | * @SerializedName("packageType") |
||
42 | */ |
||
43 | private $packageType; |
||
44 | /** |
||
45 | * @var string |
||
46 | * @SerializedName("ownerName") |
||
47 | */ |
||
48 | private $ownerName; |
||
49 | /** |
||
50 | * @var string |
||
51 | * @SerializedName("ownerInn") |
||
52 | */ |
||
53 | private $ownerInn; |
||
54 | /** |
||
55 | * @var string|null |
||
56 | * @SerializedName("productName") |
||
57 | */ |
||
58 | private $productName; |
||
59 | /** |
||
60 | * @var string|null |
||
61 | */ |
||
62 | private $brand; |
||
63 | /** |
||
64 | * @var int |
||
65 | * @SerializedName("countChildren") |
||
66 | */ |
||
67 | private $countChildren; |
||
68 | |||
69 | public function __construct( |
||
90 | |||
91 | /** |
||
92 | * @return string |
||
93 | */ |
||
94 | public function getCis(): string |
||
98 | |||
99 | /** |
||
100 | * @return string |
||
101 | */ |
||
102 | public function getGtin(): string |
||
106 | |||
107 | /** |
||
108 | * @return string |
||
109 | */ |
||
110 | public function getProducerName(): string |
||
114 | |||
115 | /** |
||
116 | * @return string |
||
117 | */ |
||
118 | public function getStatus(): string |
||
122 | |||
123 | /** |
||
124 | * @return int |
||
125 | */ |
||
126 | public function getEmissionDate(): int |
||
130 | |||
131 | /** |
||
132 | * @return string |
||
133 | */ |
||
134 | public function getPackageType(): string |
||
138 | |||
139 | /** |
||
140 | * @return string |
||
141 | */ |
||
142 | public function getOwnerName(): string |
||
146 | |||
147 | /** |
||
148 | * @return string |
||
149 | */ |
||
150 | public function getOwnerInn(): string |
||
154 | |||
155 | /** |
||
156 | * @return int |
||
157 | */ |
||
158 | public function getCountChildren(): int |
||
162 | |||
163 | /** |
||
164 | * @return string|null |
||
165 | */ |
||
166 | public function getProductName(): ?string |
||
170 | |||
171 | public function setProductName(string $productName): void |
||
175 | |||
176 | /** |
||
177 | * @return string|null |
||
178 | */ |
||
179 | public function getBrand(): ?string |
||
183 | |||
184 | public function setBrand(string $brand): void |
||
188 | } |
||
189 |