| 1: | <?php |
| 2: | |
| 3: | declare(strict_types=1); |
| 4: | |
| 5: | namespace LaravelUi5\OData\Vocabularies\Ui\V1; |
| 6: | |
| 7: | /** |
| 8: | * Assigns a label to the set of emphasized values and optionally also for non-emphasized values. This information can be used for semantic coloring. |
| 9: | */ |
| 10: | final readonly class EmphasisLabelType |
| 11: | { |
| 12: | public function __construct( |
| 13: | public readonly string $emphasizedValuesLabel, |
| 14: | public readonly ?string $nonEmphasizedValuesLabel = null, |
| 15: | ) {} |
| 16: | } |
| 17: |