| 1: | <?php |
| 2: | |
| 3: | declare(strict_types=1); |
| 4: | |
| 5: | namespace LaravelUi5\OData\Vocabularies\Ui\V1; |
| 6: | |
| 7: | /** |
| 8: | * Group of semantically connected fields with a representation template and an optional label |
| 9: | */ |
| 10: | final readonly class ConnectedFieldsType |
| 11: | { |
| 12: | public function __construct( |
| 13: | public readonly string $template, |
| 14: | public readonly mixed $data, |
| 15: | public readonly ?string $label = null, |
| 16: | ) {} |
| 17: | } |
| 18: |