id; } public function getName(): string { return $this->name; } public function getCreatedTimestamp(): ?\DateTimeImmutable { return $this->createdTimestamp; } public function jsonSerialize(): mixed { return [ 'id' => $this->id, 'name' => $this->name, 'createdTimestamp' => $this->createdTimestamp?->getTimestamp(), ]; } }