for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PhpEws\DataType;
use PhpEws\DataType;
/**
* Definition of the SensitivityChoicesType type
*/
class SensitivityChoicesType extends DataType
{
* Sensitivity level of the item
*
* @var string
public $_;
* Indiciates theat the item is confidential.
const CONFIDENTIAL = 'Confidential';
* Indiciates theat the item has a normal sensativity.
const NORMAL = 'Normal';
* Indiciates theat the item is personal.
const PERSONAL = 'Personal';
* Indiciates theat the item is private.
const PRIVATE_ITEM = 'Private';
* Converts the object to a string.
* @return string The string representation of the current object.
public function __toString()
return $this->_;
}