id; } /** * Set name * * @param string $name * @return LazaretAttribute */ public function setName($name) { $this->name = $name; return $this; } /** * Get name * * @return string */ public function getName() { return $this->name; } /** * Set value * * @param string $value * @return LazaretAttribute */ public function setValue($value) { $this->value = $value; return $this; } /** * Get value * * @return string */ public function getValue() { return $this->value; } /** * Set created * * @param \DateTime $created * @return LazaretAttribute */ public function setCreated(\DateTime $created) { $this->created = $created; return $this; } /** * Get created * * @return \DateTime */ public function getCreated() { return $this->created; } /** * Set updated * * @param \DateTime $updated * @return LazaretAttribute */ public function setUpdated(\DateTime $updated) { $this->updated = $updated; return $this; } /** * Get updated * * @return \DateTime */ public function getUpdated() { return $this->updated; } /** * Set lazaretFile * * @param LazaretFile $lazaretFile * @return LazaretAttribute */ public function setLazaretFile(LazaretFile $lazaretFile = null) { $this->lazaretFile = $lazaretFile; return $this; } /** * Get lazaretFile * * @return LazaretFile */ public function getLazaretFile() { return $this->lazaretFile; } }