1 | <?php |
||
20 | class RgProfils { |
||
21 | |||
22 | /** |
||
23 | * Fichiers move. |
||
24 | * |
||
25 | * @var string|null |
||
26 | */ |
||
27 | private $fichiersMove; |
||
28 | |||
29 | /** |
||
30 | * Fichiers publier web. |
||
31 | * |
||
32 | * @var string|null |
||
33 | */ |
||
34 | private $fichiersPublierWeb; |
||
35 | |||
36 | /** |
||
37 | * Niveau maxi. |
||
38 | * |
||
39 | * @var string|null |
||
40 | */ |
||
41 | private $niveauMaxi; |
||
42 | |||
43 | /** |
||
44 | * Niveau supplementairelibelle. |
||
45 | * |
||
46 | * @var bool|null |
||
47 | */ |
||
48 | private $niveauSupplementairelibelle; |
||
49 | |||
50 | /** |
||
51 | * Path. |
||
52 | * |
||
53 | * @var string|null |
||
54 | */ |
||
55 | private $path; |
||
56 | |||
57 | /** |
||
58 | * Path format. |
||
59 | * |
||
60 | * @var string|null |
||
61 | */ |
||
62 | private $pathFormat; |
||
63 | |||
64 | /** |
||
65 | * Uniq id. |
||
66 | * |
||
67 | * @var string|null |
||
68 | */ |
||
69 | private $uniqId; |
||
70 | |||
71 | /** |
||
72 | * Constructor. |
||
73 | */ |
||
74 | public function __construct() { |
||
77 | |||
78 | /** |
||
79 | * Get the fichiers move. |
||
80 | * |
||
81 | * @return string|null Returns the fichiers move. |
||
82 | */ |
||
83 | public function getFichiersMove(): ?string { |
||
86 | |||
87 | /** |
||
88 | * Get the fichiers publier web. |
||
89 | * |
||
90 | * @return string|null Returns the fichiers publier web. |
||
91 | */ |
||
92 | public function getFichiersPublierWeb(): ?string { |
||
95 | |||
96 | /** |
||
97 | * Get the niveau maxi. |
||
98 | * |
||
99 | * @return string|null Returns the niveau maxi. |
||
100 | */ |
||
101 | public function getNiveauMaxi(): ?string { |
||
104 | |||
105 | /** |
||
106 | * Get the niveau supplementairelibelle. |
||
107 | * |
||
108 | * @return bool|null Returns the niveau supplementairelibelle. |
||
109 | */ |
||
110 | public function getNiveauSupplementairelibelle(): ?bool { |
||
113 | |||
114 | /** |
||
115 | * Get the path. |
||
116 | * |
||
117 | * @return string|null Returns the path. |
||
118 | */ |
||
119 | public function getPath(): ?string { |
||
122 | |||
123 | /** |
||
124 | * Get the path format. |
||
125 | * |
||
126 | * @return string|null Returns the path format. |
||
127 | */ |
||
128 | public function getPathFormat(): ?string { |
||
131 | |||
132 | /** |
||
133 | * Get the uniq id. |
||
134 | * |
||
135 | * @return string|null Returns the uniq id. |
||
136 | */ |
||
137 | public function getUniqId(): ?string { |
||
140 | |||
141 | /** |
||
142 | * Set the fichiers move. |
||
143 | * |
||
144 | * @param string|null $fichiersMove The fichiers move. |
||
145 | * @return RgProfils Returns this Rg profils. |
||
146 | */ |
||
147 | public function setFichiersMove(?string $fichiersMove): RgProfils { |
||
151 | |||
152 | /** |
||
153 | * Set the fichiers publier web. |
||
154 | * |
||
155 | * @param string|null $fichiersPublierWeb The fichiers publier web. |
||
156 | * @return RgProfils Returns this Rg profils. |
||
157 | */ |
||
158 | public function setFichiersPublierWeb(?string $fichiersPublierWeb): RgProfils { |
||
162 | |||
163 | /** |
||
164 | * Set the niveau maxi. |
||
165 | * |
||
166 | * @param string|null $niveauMaxi The niveau maxi. |
||
167 | * @return RgProfils Returns this Rg profils. |
||
168 | */ |
||
169 | public function setNiveauMaxi(?string $niveauMaxi): RgProfils { |
||
173 | |||
174 | /** |
||
175 | * Set the niveau supplementairelibelle. |
||
176 | * |
||
177 | * @param bool|null $niveauSupplementairelibelle The niveau supplementairelibelle. |
||
178 | * @return RgProfils Returns this Rg profils. |
||
179 | */ |
||
180 | public function setNiveauSupplementairelibelle(?bool $niveauSupplementairelibelle): RgProfils { |
||
184 | |||
185 | /** |
||
186 | * Set the path. |
||
187 | * |
||
188 | * @param string|null $path The path. |
||
189 | * @return RgProfils Returns this Rg profils. |
||
190 | */ |
||
191 | public function setPath(?string $path): RgProfils { |
||
195 | |||
196 | /** |
||
197 | * Set the path format. |
||
198 | * |
||
199 | * @param string|null $pathFormat The path format. |
||
200 | * @return RgProfils Returns this Rg profils. |
||
201 | */ |
||
202 | public function setPathFormat(?string $pathFormat): RgProfils { |
||
206 | |||
207 | /** |
||
208 | * Set the uniq id. |
||
209 | * |
||
210 | * @param string|null $uniqId The uniq id. |
||
211 | * @return RgProfils Returns this Rg profils. |
||
212 | */ |
||
213 | public function setUniqId(?string $uniqId): RgProfils { |
||
217 | } |
||
218 |