for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PhpEws\DataType;
use PhpEws\DataType;
/**
* Defines the well-known property set IDs for extended MAPI properties.
*/
class DistinguishedPropertySetIdType extends DataType
{
* Identifies the address property set ID by name.
*
* @var string
const ADDRESS = 'Address';
* Identifies the appointment property set ID by name.
const APPOINTMENT = 'Appointment';
* Identifies the calendar assistant property set ID by name.
const CALENDAR_ASSISTANT = 'CalendarAssistant';
* Identifies the common property set ID by name.
const COMMON = 'Common';
* Identifies the Internet headers property set ID by name.
const INTERNET_HEADERS = 'InternetHeaders';
* Identifies the meeting property set ID by name.
const MEETING = 'Meeting';
* Identifies the public strings property set ID by name.
const PUBLIC_STRINGS = 'PublicStrings';
* Identifies the unified messaging property set ID by name.
const UNIFIED_MESSAGING = 'UnifiedMessaging';
* Element value.
* @value
public $_;
* Returns the value of this object as a string.
* @return string
public function __toString()
return $this->_;
}