|
| 1 | +<?php |
| 2 | + |
| 3 | +namespace Qdequippe\Pappers\Api\Model; |
| 4 | + |
| 5 | +class AppelOffre extends \ArrayObject |
| 6 | +{ |
| 7 | + /** |
| 8 | + * @var array |
| 9 | + */ |
| 10 | + protected $initialized = []; |
| 11 | + |
| 12 | + public function isInitialized($property): bool |
| 13 | + { |
| 14 | + return \array_key_exists($property, $this->initialized); |
| 15 | + } |
| 16 | + /** |
| 17 | + * Montant de l'appel d'offre en euros. |
| 18 | + * |
| 19 | + * @var float|null |
| 20 | + */ |
| 21 | + protected $montant; |
| 22 | + /** |
| 23 | + * Durée du marché en mois. |
| 24 | + * |
| 25 | + * @var int|null |
| 26 | + */ |
| 27 | + protected $dureeMois; |
| 28 | + /** |
| 29 | + * Date de notification de l'appel d'offre au format AAAA-MM-JJ. |
| 30 | + * |
| 31 | + * @var \DateTime|null |
| 32 | + */ |
| 33 | + protected $dateNotification; |
| 34 | + /** |
| 35 | + * Date de publication de l'appel d'offre au format AAAA-MM-JJ. |
| 36 | + * |
| 37 | + * @var \DateTime|null |
| 38 | + */ |
| 39 | + protected $datePublication; |
| 40 | + /** |
| 41 | + * Objet de l'appel d'offre. |
| 42 | + * |
| 43 | + * @var string|null |
| 44 | + */ |
| 45 | + protected $objet; |
| 46 | + /** |
| 47 | + * Code de la catégorie de l'appel d'offre. |
| 48 | + * |
| 49 | + * @var string|null |
| 50 | + */ |
| 51 | + protected $codeCategorie; |
| 52 | + /** |
| 53 | + * Libellé de la catégorie de l'appel d'offre. |
| 54 | + * |
| 55 | + * @var string|null |
| 56 | + */ |
| 57 | + protected $libelleCategorie; |
| 58 | + /** |
| 59 | + * Identifiant Macellum de l'appel d'offre. |
| 60 | + * |
| 61 | + * @var string|null |
| 62 | + */ |
| 63 | + protected $idMacellum; |
| 64 | + /** |
| 65 | + * Statut de la procédure de l'appel d'offre. |
| 66 | + * |
| 67 | + * @var string|null |
| 68 | + */ |
| 69 | + protected $statutProcedure; |
| 70 | + |
| 71 | + /** |
| 72 | + * Montant de l'appel d'offre en euros. |
| 73 | + */ |
| 74 | + public function getMontant(): ?float |
| 75 | + { |
| 76 | + return $this->montant; |
| 77 | + } |
| 78 | + |
| 79 | + /** |
| 80 | + * Montant de l'appel d'offre en euros. |
| 81 | + */ |
| 82 | + public function setMontant(?float $montant): self |
| 83 | + { |
| 84 | + $this->initialized['montant'] = true; |
| 85 | + $this->montant = $montant; |
| 86 | + |
| 87 | + return $this; |
| 88 | + } |
| 89 | + |
| 90 | + /** |
| 91 | + * Durée du marché en mois. |
| 92 | + */ |
| 93 | + public function getDureeMois(): ?int |
| 94 | + { |
| 95 | + return $this->dureeMois; |
| 96 | + } |
| 97 | + |
| 98 | + /** |
| 99 | + * Durée du marché en mois. |
| 100 | + */ |
| 101 | + public function setDureeMois(?int $dureeMois): self |
| 102 | + { |
| 103 | + $this->initialized['dureeMois'] = true; |
| 104 | + $this->dureeMois = $dureeMois; |
| 105 | + |
| 106 | + return $this; |
| 107 | + } |
| 108 | + |
| 109 | + /** |
| 110 | + * Date de notification de l'appel d'offre au format AAAA-MM-JJ. |
| 111 | + */ |
| 112 | + public function getDateNotification(): ?\DateTime |
| 113 | + { |
| 114 | + return $this->dateNotification; |
| 115 | + } |
| 116 | + |
| 117 | + /** |
| 118 | + * Date de notification de l'appel d'offre au format AAAA-MM-JJ. |
| 119 | + */ |
| 120 | + public function setDateNotification(?\DateTime $dateNotification): self |
| 121 | + { |
| 122 | + $this->initialized['dateNotification'] = true; |
| 123 | + $this->dateNotification = $dateNotification; |
| 124 | + |
| 125 | + return $this; |
| 126 | + } |
| 127 | + |
| 128 | + /** |
| 129 | + * Date de publication de l'appel d'offre au format AAAA-MM-JJ. |
| 130 | + */ |
| 131 | + public function getDatePublication(): ?\DateTime |
| 132 | + { |
| 133 | + return $this->datePublication; |
| 134 | + } |
| 135 | + |
| 136 | + /** |
| 137 | + * Date de publication de l'appel d'offre au format AAAA-MM-JJ. |
| 138 | + */ |
| 139 | + public function setDatePublication(?\DateTime $datePublication): self |
| 140 | + { |
| 141 | + $this->initialized['datePublication'] = true; |
| 142 | + $this->datePublication = $datePublication; |
| 143 | + |
| 144 | + return $this; |
| 145 | + } |
| 146 | + |
| 147 | + /** |
| 148 | + * Objet de l'appel d'offre. |
| 149 | + */ |
| 150 | + public function getObjet(): ?string |
| 151 | + { |
| 152 | + return $this->objet; |
| 153 | + } |
| 154 | + |
| 155 | + /** |
| 156 | + * Objet de l'appel d'offre. |
| 157 | + */ |
| 158 | + public function setObjet(?string $objet): self |
| 159 | + { |
| 160 | + $this->initialized['objet'] = true; |
| 161 | + $this->objet = $objet; |
| 162 | + |
| 163 | + return $this; |
| 164 | + } |
| 165 | + |
| 166 | + /** |
| 167 | + * Code de la catégorie de l'appel d'offre. |
| 168 | + */ |
| 169 | + public function getCodeCategorie(): ?string |
| 170 | + { |
| 171 | + return $this->codeCategorie; |
| 172 | + } |
| 173 | + |
| 174 | + /** |
| 175 | + * Code de la catégorie de l'appel d'offre. |
| 176 | + */ |
| 177 | + public function setCodeCategorie(?string $codeCategorie): self |
| 178 | + { |
| 179 | + $this->initialized['codeCategorie'] = true; |
| 180 | + $this->codeCategorie = $codeCategorie; |
| 181 | + |
| 182 | + return $this; |
| 183 | + } |
| 184 | + |
| 185 | + /** |
| 186 | + * Libellé de la catégorie de l'appel d'offre. |
| 187 | + */ |
| 188 | + public function getLibelleCategorie(): ?string |
| 189 | + { |
| 190 | + return $this->libelleCategorie; |
| 191 | + } |
| 192 | + |
| 193 | + /** |
| 194 | + * Libellé de la catégorie de l'appel d'offre. |
| 195 | + */ |
| 196 | + public function setLibelleCategorie(?string $libelleCategorie): self |
| 197 | + { |
| 198 | + $this->initialized['libelleCategorie'] = true; |
| 199 | + $this->libelleCategorie = $libelleCategorie; |
| 200 | + |
| 201 | + return $this; |
| 202 | + } |
| 203 | + |
| 204 | + /** |
| 205 | + * Identifiant Macellum de l'appel d'offre. |
| 206 | + */ |
| 207 | + public function getIdMacellum(): ?string |
| 208 | + { |
| 209 | + return $this->idMacellum; |
| 210 | + } |
| 211 | + |
| 212 | + /** |
| 213 | + * Identifiant Macellum de l'appel d'offre. |
| 214 | + */ |
| 215 | + public function setIdMacellum(?string $idMacellum): self |
| 216 | + { |
| 217 | + $this->initialized['idMacellum'] = true; |
| 218 | + $this->idMacellum = $idMacellum; |
| 219 | + |
| 220 | + return $this; |
| 221 | + } |
| 222 | + |
| 223 | + /** |
| 224 | + * Statut de la procédure de l'appel d'offre. |
| 225 | + */ |
| 226 | + public function getStatutProcedure(): ?string |
| 227 | + { |
| 228 | + return $this->statutProcedure; |
| 229 | + } |
| 230 | + |
| 231 | + /** |
| 232 | + * Statut de la procédure de l'appel d'offre. |
| 233 | + */ |
| 234 | + public function setStatutProcedure(?string $statutProcedure): self |
| 235 | + { |
| 236 | + $this->initialized['statutProcedure'] = true; |
| 237 | + $this->statutProcedure = $statutProcedure; |
| 238 | + |
| 239 | + return $this; |
| 240 | + } |
| 241 | +} |
0 commit comments