for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PhpEws\DataType;
use PhpEws\DataType;
/**
* Email address key type
*/
class EmailAddressKeyType extends DataType
{
* Key for a contacts first email address
*
* @var string
const EMAIL_ADDRESS_1 = 'EmailAddress1';
* Key for a contacts second email address
const EMAIL_ADDRESS_2 = 'EmailAddress2';
* Key for a contacts third email address
const EMAIL_ADDRESS_3 = 'EmailAddress3';
* Value of the desired mapping. Should be one of the constants from the
* EmailAddressKeyType class.
public $_;
* Returns the value of this object as a string
* @return string
public function __toString()
return $this->_;
}