| 1 | <?php |
||
| 12 | class MeetingAttendeeType extends DataType |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * A mailbox user who is an optional attendee to the meeting. |
||
| 16 | * |
||
| 17 | * @since Exchange 2007 |
||
| 18 | * |
||
| 19 | * @var string |
||
| 20 | */ |
||
| 21 | const OPTIONAL = 'Optional'; |
||
| 22 | /** |
||
| 23 | * The mailbox user and attendee who created the calendar item. |
||
| 24 | * |
||
| 25 | * @since Exchange 2007 |
||
| 26 | * |
||
| 27 | * @var string |
||
| 28 | */ |
||
| 29 | const ORGANIZER = 'Organizer'; |
||
| 30 | /** |
||
| 31 | * A mailbox user who is a required attendee to the meeting. |
||
| 32 | * |
||
| 33 | * @since Exchange 2007 |
||
| 34 | * |
||
| 35 | * @var string |
||
| 36 | */ |
||
| 37 | const REQUIRED = 'Required'; |
||
| 38 | /** |
||
| 39 | * A resource such as a TV or projector that is scheduled for use in the meeting. |
||
| 40 | * |
||
| 41 | * @since Exchange 2007 |
||
| 42 | * |
||
| 43 | * @var string |
||
| 44 | */ |
||
| 45 | const RESOURCE = 'Resource'; |
||
| 46 | /** |
||
| 47 | * A mailbox entity that represents a room resource used for the meeting. |
||
| 48 | * |
||
| 49 | * @since Exchange 2007 |
||
| 50 | * |
||
| 51 | * @var string |
||
| 52 | */ |
||
| 53 | const ROOM = 'Room'; |
||
| 54 | /** |
||
| 55 | * Element value. |
||
| 56 | * |
||
| 57 | * @var string |
||
| 58 | */ |
||
| 59 | public $_; |
||
| 60 | /** |
||
| 61 | * Returns the value of this object as a string. |
||
| 62 | * |
||
| 63 | * @return string |
||
| 64 | */ |
||
| 65 | public function __toString() |
||
| 69 | } |