| 1: | <?php |
| 2: | |
| 3: | declare(strict_types=1); |
| 4: | |
| 5: | namespace LaravelUi5\OData\Vocabularies\Ui\V1; |
| 6: | |
| 7: | /** |
| 8: | * Base type containing recommendations for an entity type property |
| 9: | */ |
| 10: | final readonly class PropertyRecommendationType |
| 11: | { |
| 12: | public function __construct( |
| 13: | public readonly mixed $recommendedFieldValue, |
| 14: | public readonly bool $recommendedFieldIsSuggestion, |
| 15: | public readonly ?string $recommendedFieldDescription = null, |
| 16: | public readonly ?float $recommendedFieldScoreValue = null, |
| 17: | ) {} |
| 18: | } |
| 19: |