value = $normalized; } public static function from(self|string $value): self { return $value instanceof self ? $value : new self($value); } public static function intunePolicy(): self { return new self('intune_policy'); } public function equals(self|string $other): bool { return $this->value === self::from($other)->value; } public function __toString(): string { return $this->value; } }