1: <?php
2:
3: declare(strict_types=1);
4:
5: namespace LaravelUi5\OData\Vocabularies\Common\V1;
6:
7: /**
8: * Control state of a property
9: */
10: enum FieldControlType: int
11: {
12: case Mandatory = 7;
13: case Optional = 3;
14: case ReadOnly = 1;
15: case Inapplicable = 0;
16: case Hidden = 0;
17: }
18: