| 1: | <?php |
| 2: | |
| 3: | declare(strict_types=1); |
| 4: | |
| 5: | namespace LaravelUi5\OData\Vocabularies\Capabilities\V1; |
| 6: | |
| 7: | final readonly class DefaultCapabilitiesType |
| 8: | { |
| 9: | public function __construct( |
| 10: | public readonly mixed $changeTracking = null, |
| 11: | public readonly mixed $countRestrictions = null, |
| 12: | public readonly ?bool $indexableByKey = null, |
| 13: | public readonly ?bool $topSupported = null, |
| 14: | public readonly ?bool $skipSupported = null, |
| 15: | public readonly ?bool $computeSupported = null, |
| 16: | public readonly mixed $selectSupport = null, |
| 17: | public readonly mixed $filterRestrictions = null, |
| 18: | public readonly mixed $sortRestrictions = null, |
| 19: | public readonly mixed $expandRestrictions = null, |
| 20: | public readonly mixed $searchRestrictions = null, |
| 21: | public readonly mixed $insertRestrictions = null, |
| 22: | public readonly mixed $updateRestrictions = null, |
| 23: | public readonly mixed $deleteRestrictions = null, |
| 24: | public readonly mixed $operationRestrictions = null, |
| 25: | public readonly mixed $readRestrictions = null, |
| 26: | ) {} |
| 27: | } |
| 28: | |