summaryrefslogblamecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/LegacyFreeBusyType.php
blob: e13df976f8ecc3c4ad339ed1884ff8fa9b601397 (plain) (tree)






































































                                                                               
<?php
/**
 * Contains \jamesiarmes\PhpEws\Enumeration\LegacyFreeBusyType.
 */

namespace jamesiarmes\PhpEws\Enumeration;

use \jamesiarmes\PhpEws\Enumeration;

/**
 * Represents the intended status for a calendar item that is associated with a
 * meeting request.
 *
 * @package php-ews\Enumeration
 */
class LegacyFreeBusyType extends Enumeration
{
    /**
     * The calendar item represents busy time.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const BUSY = 'Busy';

    /**
     * The calendar item represents free time.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const FREE = 'Free';

    /**
     * The calendar item's status is not defined.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const NO_DATA = 'NoData';

    /**
     * The calendar item represents time out of the office.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const OUT_OF_OFFICE = 'OOF';

    /**
     * The calendar item represents tentatively busy time.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const TENTATIVE = 'Tentative';

    /**
     * The calendar item represents time working off site.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const WORKING_ELSEWHERE = 'WorkingElsewhere';
}