1: <?php
2:
3: declare(strict_types=1);
4:
5: namespace LaravelUi5\OData\Vocabularies\Core\V1;
6:
7: /**
8: * A [Feature Object](https://datatracker.ietf.org/doc/html/rfc7946#section-3.2) represents a spatially bounded thing
9: */
10: final readonly class GeometryFeatureType
11: {
12: public function __construct(
13: public readonly mixed $geometry = null,
14: public readonly mixed $properties = null,
15: public readonly ?string $id = null,
16: ) {}
17: }
18: