prefix = $input['Prefix'] ?? null; } public static function create($input): self { return $input instanceof self ? $input : new self($input); } public function getPrefix(): ?string { return $this->prefix; } }