"Administrator", self::MODERATOR => "Moderator", self::SUPPORT => "Support", ]; #[MaxLength(32)] public string $name; #[MaxLength(10)] public string $color; public function __construct(?int $id, string $name, string $color) { parent::__construct($id); $this->name = $name; $this->color = $color; } public function jsonSerialize(): array { return [ "id" => $this->getId(), "name" => $this->name, "color" => $this->color ]; } }