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 KindType type.
*/
class KindType extends DataType
{
* Specifies that the time zone transition target is a time zone period.
*
* @var string
const PERIOD = 'Period';
* Specifies that the time zone transition target is a group of time zone
* transitions.
const GROUP = 'Group';
* Element value.
public $_;
* Returns the value of this object as a string.
* @return string
public function __toString()
return $this->_;
}