active; } /** * Get id. * * @return int */ public function getId() { return $this->id; } /** * Get label. * * @return array */ public function getName() { return $this->name; } /** * Get type. * * @return EventType */ public function getType() { return $this->type; } /** * Set active. * * @param bool $active * * @return Status */ public function setActive($active) { $this->active = $active; return $this; } /** * Set label. * * @param array $name * * @return Status */ public function setName($name) { $this->name = $name; return $this; } /** * Set type. * * @param EventType $type * * @return Status */ public function setType(?EventType $type = null) { $this->type = $type; return $this; } }