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 ResponseTypeType type
*/
class ResponseTypeType extends DataType
{
* Response type indicating that a request has been accepted.
*
* @var string
const ACCEPT = 'Accept';
* Response type indicating that a request has been declined.
const DECLNE = 'Decline';
* Response type indicating that no reponse has been received.
const NONE = 'NoResponseReceived';
* Response type indicating that the attendee is the organizer.
const ORGANIZER = 'Organizer';
* Response type indicating that a request has been tentatively accepted.
const TENTATIVE = 'Tentative';
* Response type indicating that the reponse is unknown.
const UNKNOWN = 'Unknown';
* Value of the element.
public $_;
* Returns the value of this object as a string.
* @return string
public function __toString()
return $this->_;
}