name = $name; } public function getName(): string { return $this->name; } public function jsonSerialize() { return [ 'name' => $this->name, ]; } }