| 1 | <?php |
||
| 10 | class CalendarItemCreateOrDeleteOperationType extends DataType |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Send to no recipients. |
||
| 14 | * |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | const SEND_TO_NONE = 'SendToNone'; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Send to all recipients but do not save a copy. |
||
| 21 | * |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | const SEND_ONLY_TO_ALL = 'SendOnlyToAll'; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Send to all recipients and save a copy. |
||
| 28 | * |
||
| 29 | * @var string |
||
| 30 | */ |
||
| 31 | const SEND_TO_ALL_AND_SAVE_COPY = 'SendToAllAndSaveCopy'; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Element value. |
||
| 35 | * |
||
| 36 | * @var string |
||
| 37 | */ |
||
| 38 | public $_; |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Returns the value of this object as a string. |
||
| 42 | * |
||
| 43 | * @return string |
||
| 44 | */ |
||
| 45 | public function __toString() |
||
| 49 | } |
||
| 50 |