| 1 | <?php |
||
| 10 | class ImportanceChoicesType extends DataType |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Importance level of the item. |
||
| 14 | * |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | public $_; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * High importance level. |
||
| 21 | * |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | const HIGH = 'High'; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Low importance level. |
||
| 28 | * |
||
| 29 | * @var string |
||
| 30 | */ |
||
| 31 | const LOW = 'Low'; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Normal importance level. |
||
| 35 | * |
||
| 36 | * @var string |
||
| 37 | */ |
||
| 38 | const NORMAL = 'Normal'; |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Converts the object to a string. |
||
| 42 | * |
||
| 43 | * @return string The string representation of the current object. |
||
| 44 | */ |
||
| 45 | public function __toString() |
||
| 49 | } |
||
| 50 |