for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PhpEws\DataType;
use PhpEws\DataType;
/**
* Represents the quality of the day for containing quality suggested meeting
* times.
*
* @package php-ews\Enumerations
*/
class SuggestionQuality extends DataType
{
* Indicates that the suggested meeting time is excellent.
* @since Exchange 2007
* @var string
const EXCELLENT = 'Excellent';
* Indicates that the suggested meeting time is fair.
const FAIR = 'Fair';
* Indicates that the suggested meeting time is good.
const GOOD = 'Good';
* Indicates that the suggested meeting time is poor.
const POOR = 'Poor';
* Element value.
public $_;
* Returns the value of this object as a string.
* @return string
public function __toString()
return $this->_;
}