true])] private bool $active = true; #[ORM\Column(type: \Doctrine\DBAL\Types\Types::STRING, length: 255)] private ?string $canceledBy = null; #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column(type: \Doctrine\DBAL\Types\Types::INTEGER)] private ?int $id = null; #[ORM\Column(type: \Doctrine\DBAL\Types\Types::JSON)] private array $name = []; public function getActive(): ?bool { return $this->active; } public function getCanceledBy(): ?string { return $this->canceledBy; } public function getId(): ?int { return $this->id; } public function getName(): ?array { return $this->name; } public function setActive(bool $active): self { $this->active = $active; return $this; } public function setCanceledBy(string $canceledBy): self { $this->canceledBy = $canceledBy; return $this; } public function setName(array $name): self { $this->name = $name; return $this; } }