1: <?php
2:
3: declare(strict_types=1);
4:
5: namespace LaravelUi5\OData\Vocabularies\Ui\V1;
6:
7: /**
8: * A piece of data that allows navigating to other information on the Web
9: */
10: final readonly class DataFieldWithUrl
11: {
12: public function __construct(
13: public readonly mixed $value,
14: public readonly string $url,
15: public readonly ?string $urlContentType = null,
16: ) {}
17: }
18: