| 1: | <?php |
| 2: | |
| 3: | declare(strict_types=1); |
| 4: | |
| 5: | namespace LaravelUi5\OData\Vocabularies\Ui\V1; |
| 6: | |
| 7: | final readonly class BadgeType |
| 8: | { |
| 9: | public function __construct( |
| 10: | public readonly mixed $headLine, |
| 11: | public readonly mixed $title, |
| 12: | public readonly ?string $imageUrl = null, |
| 13: | public readonly ?string $typeImageUrl = null, |
| 14: | public readonly mixed $mainInfo = null, |
| 15: | public readonly mixed $secondaryInfo = null, |
| 16: | ) {} |
| 17: | } |
| 18: |