1: <?php
2:
3: declare(strict_types=1);
4:
5: namespace LaravelUi5\OData\Vocabularies\Ui\V1;
6:
7: /**
8: * Properties that describe an image
9: */
10: final readonly class ImageType
11: {
12: public function __construct(
13: public readonly string $url,
14: public readonly mixed $stream = null,
15: public readonly ?string $width = null,
16: public readonly ?string $height = null,
17: ) {}
18: }
19: