for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PhpEws\DataType;
use PhpEws\DataType;
/**
* Represents the type of attendee that is identified in the Email element.
*
* @package php-ews\Enumerations
*/
class MeetingAttendeeType extends DataType
{
* A mailbox user who is an optional attendee to the meeting.
* @since Exchange 2007
* @var string
const OPTIONAL = 'Optional';
* The mailbox user and attendee who created the calendar item.
const ORGANIZER = 'Organizer';
* A mailbox user who is a required attendee to the meeting.
const REQUIRED = 'Required';
* A resource such as a TV or projector that is scheduled for use in the meeting.
const RESOURCE = 'Resource';
* A mailbox entity that represents a room resource used for the meeting.
const ROOM = 'Room';
* Element value.
public $_;
* Returns the value of this object as a string.
* @return string
public function __toString()
return $this->_;
}