for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PhpEws\DataType;
use PhpEws\DataType;
/**
* Instant messenger address key type
*/
class ImAddressKeyType extends DataType
{
* Instant messenger ket for instant messenger address one.
*
* @var string
const IM_ADDRESS_1 = 'ImAddress1';
* Instant messenger ket for instant messenger address two.
const IM_ADDRESS_2 = 'ImAddress2';
* Instant messenger ket for instant messenger address three.
const IM_ADDRESS_3 = 'ImAddress3';
* Value of the desired mapping. Should be one of the constants from the
* ImAddressKeyType class.
public $_;
* Returns the value of this object as a string
* @return string
public function __toString()
return $this->_;
}