| 1: | <?php |
| 2: | |
| 3: | declare(strict_types=1); |
| 4: | |
| 5: | namespace LaravelUi5\OData\Vocabularies\Capabilities\V1; |
| 6: | |
| 7: | final readonly class CollectionPropertyRestrictionsType |
| 8: | { |
| 9: | public function __construct( |
| 10: | public readonly array $filterFunctions, |
| 11: | public readonly bool $topSupported, |
| 12: | public readonly bool $skipSupported, |
| 13: | public readonly bool $insertable, |
| 14: | public readonly bool $updatable, |
| 15: | public readonly bool $deletable, |
| 16: | public readonly ?string $collectionProperty = null, |
| 17: | public readonly mixed $filterRestrictions = null, |
| 18: | public readonly mixed $searchRestrictions = null, |
| 19: | public readonly mixed $sortRestrictions = null, |
| 20: | public readonly mixed $selectSupport = null, |
| 21: | ) {} |
| 22: | } |
| 23: | |