| 1: | <?php |
| 2: | |
| 3: | declare(strict_types=1); |
| 4: | |
| 5: | namespace LaravelUi5\OData\Vocabularies\Capabilities\V1; |
| 6: | |
| 7: | final readonly class BatchSupportType |
| 8: | { |
| 9: | public function __construct( |
| 10: | public readonly bool $supported, |
| 11: | public readonly bool $continueOnErrorSupported, |
| 12: | public readonly bool $referencesInRequestBodiesSupported, |
| 13: | public readonly bool $referencesAcrossChangeSetsSupported, |
| 14: | public readonly bool $etagReferencesSupported, |
| 15: | public readonly bool $requestDependencyConditionsSupported, |
| 16: | public readonly array $supportedFormats, |
| 17: | ) {} |
| 18: | } |
| 19: | |