1: <?php
2:
3: declare(strict_types=1);
4:
5: namespace LaravelUi5\OData\Vocabularies\Ui\V1;
6:
7: /**
8: * Triggers intent-based UI navigation
9: */
10: final readonly class DataFieldForIntentBasedNavigation
11: {
12: public function __construct(
13: public readonly string $semanticObject,
14: public readonly bool $navigationAvailable,
15: public readonly bool $requiresContext,
16: public readonly array $mapping,
17: public readonly ?string $action = null,
18: ) {}
19: }
20: