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 CalendarItemCreateOrDeleteOperationType type.
*/
class CalendarItemCreateOrDeleteOperationType extends DataType
{
* Send to no recipients.
*
* @var string
const SEND_TO_NONE = 'SendToNone';
* Send to all recipients but do not save a copy.
const SEND_ONLY_TO_ALL = 'SendOnlyToAll';
* Send to all recipients and save a copy.
const SEND_TO_ALL_AND_SAVE_COPY = 'SendToAllAndSaveCopy';
* Element value.
public $_;
* Returns the value of this object as a string.
* @return string
public function __toString()
return $this->_;
}