| 1: | <?php |
| 2: | |
| 3: | declare(strict_types=1); |
| 4: | |
| 5: | namespace LaravelUi5\OData\Vocabularies\Ui\V1; |
| 6: | |
| 7: | enum VisualizationType: int |
| 8: | { |
| 9: | case Number = 0; |
| 10: | case BulletChart = 1; |
| 11: | case Progress = 2; |
| 12: | case Rating = 3; |
| 13: | case Donut = 4; |
| 14: | case DeltaBulletChart = 5; |
| 15: | } |
| 16: |