id = $input['ID'] ?? null; $this->displayName = $input['DisplayName'] ?? null; } public static function create($input): self { return $input instanceof self ? $input : new self($input); } public function getDisplayName(): ?string { return $this->displayName; } public function getId(): ?string { return $this->id; } }