1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
declare(strict_types=1); |
4
|
|
|
|
5
|
|
|
namespace Lamoda\IsmpClient\V4\Dto\FacadeDocBodyResponse\Body\Products; |
6
|
|
|
|
7
|
|
|
class Product |
8
|
|
|
{ |
9
|
|
|
/** |
10
|
|
|
* @var string|null |
11
|
|
|
*/ |
12
|
|
|
private $uituCode; |
13
|
|
|
/** |
14
|
|
|
* @var string|null |
15
|
|
|
*/ |
16
|
|
|
private $uitCode; |
17
|
|
|
/** |
18
|
|
|
* @var string|null |
19
|
|
|
*/ |
20
|
|
|
private $tnvedCode; |
21
|
|
|
/** |
22
|
|
|
* @var string|null |
23
|
|
|
*/ |
24
|
|
|
private $producerInn; |
25
|
|
|
/** |
26
|
|
|
* @var string|null |
27
|
|
|
*/ |
28
|
|
|
private $ownerInn; |
29
|
|
|
/** |
30
|
|
|
* @var string|null |
31
|
|
|
*/ |
32
|
|
|
private $certificateDocument; |
33
|
|
|
/** |
34
|
|
|
* @var string|null |
35
|
|
|
*/ |
36
|
|
|
private $certificateDocumentNumber; |
37
|
|
|
/** |
38
|
|
|
* @var string|null |
39
|
|
|
*/ |
40
|
|
|
private $certificateDocumentDate; |
41
|
|
|
|
42
|
|
|
public function getUituCode(): ?string |
43
|
|
|
{ |
44
|
|
|
return $this->uituCode; |
45
|
|
|
} |
46
|
|
|
|
47
|
|
|
public function setUituCode(?string $uituCode): self |
48
|
|
|
{ |
49
|
|
|
$this->uituCode = $uituCode; |
50
|
|
|
|
51
|
|
|
return $this; |
52
|
|
|
} |
53
|
|
|
|
54
|
|
|
public function getUitCode(): ?string |
55
|
|
|
{ |
56
|
|
|
return $this->uitCode; |
57
|
|
|
} |
58
|
|
|
|
59
|
|
|
public function setUitCode(?string $uitCode): self |
60
|
|
|
{ |
61
|
|
|
$this->uitCode = $uitCode; |
62
|
|
|
|
63
|
|
|
return $this; |
64
|
|
|
} |
65
|
|
|
|
66
|
|
|
public function getTnvedCode(): ?string |
67
|
|
|
{ |
68
|
|
|
return $this->tnvedCode; |
69
|
|
|
} |
70
|
|
|
|
71
|
|
|
public function setTnvedCode(?string $tnvedCode): self |
72
|
|
|
{ |
73
|
|
|
$this->tnvedCode = $tnvedCode; |
74
|
|
|
|
75
|
|
|
return $this; |
76
|
|
|
} |
77
|
|
|
|
78
|
|
|
public function getProducerInn(): ?string |
79
|
|
|
{ |
80
|
|
|
return $this->producerInn; |
81
|
|
|
} |
82
|
|
|
|
83
|
|
|
public function setProducerInn(?string $producerInn): self |
84
|
|
|
{ |
85
|
|
|
$this->producerInn = $producerInn; |
86
|
|
|
|
87
|
|
|
return $this; |
88
|
|
|
} |
89
|
|
|
|
90
|
|
|
public function getOwnerInn(): ?string |
91
|
|
|
{ |
92
|
|
|
return $this->ownerInn; |
93
|
|
|
} |
94
|
|
|
|
95
|
|
|
public function setOwnerInn(?string $ownerInn): self |
96
|
|
|
{ |
97
|
|
|
$this->ownerInn = $ownerInn; |
98
|
|
|
|
99
|
|
|
return $this; |
100
|
|
|
} |
101
|
|
|
|
102
|
|
|
public function getCertificateDocument(): ?string |
103
|
|
|
{ |
104
|
|
|
return $this->certificateDocument; |
105
|
|
|
} |
106
|
|
|
|
107
|
|
|
public function setCertificateDocument(?string $certificateDocument): self |
108
|
|
|
{ |
109
|
|
|
$this->certificateDocument = $certificateDocument; |
110
|
|
|
|
111
|
|
|
return $this; |
112
|
|
|
} |
113
|
|
|
|
114
|
|
|
public function getCertificateDocumentNumber(): ?string |
115
|
|
|
{ |
116
|
|
|
return $this->certificateDocumentNumber; |
117
|
|
|
} |
118
|
|
|
|
119
|
|
|
public function setCertificateDocumentNumber(?string $certificateDocumentNumber): self |
120
|
|
|
{ |
121
|
|
|
$this->certificateDocumentNumber = $certificateDocumentNumber; |
122
|
|
|
|
123
|
|
|
return $this; |
124
|
|
|
} |
125
|
|
|
|
126
|
|
|
public function getCertificateDocumentDate(): ?string |
127
|
|
|
{ |
128
|
|
|
return $this->certificateDocumentDate; |
129
|
|
|
} |
130
|
|
|
|
131
|
|
|
public function setCertificateDocumentDate(?string $certificateDocumentDate): self |
132
|
|
|
{ |
133
|
|
|
$this->certificateDocumentDate = $certificateDocumentDate; |
134
|
|
|
|
135
|
|
|
return $this; |
136
|
|
|
} |
137
|
|
|
} |
138
|
|
|
|