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



















































































































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

namespace jamesiarmes\PhpEws\Enumeration;

use \jamesiarmes\PhpEws\Enumeration;

/**
 * Specifies the flag for action value that must appear on incoming messages in
 * order for the condition or exception to apply.
 *
 * @package php-ews\Enumeration
 */
class FlaggedForActionType extends Enumeration
{
    /**
     * Indicates that the message may contain any flag.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const ANY = 'Any';

    /**
     * Indicates that the message has been flagged for a call.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const CALL = 'Call';

    /**
     * Indicates that the message is not to be forwarded.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const DO_NOT_FORWARD = 'DoNotForward';

    /**
     * Indicates that the message has been flagged for a follow up.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const FOLLOW_UP = 'FollowUp';

    /**
     * Indicates that the message is to be forwarded.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const FORWARD = 'Forward';

    /**
     * Indicates that the message has been flagged as FYI.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const FYI = 'FYI';

    /**
     * Indicates that the message does not require a response.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const NO_RESPONSE_NECESSARY = 'NoResponseNecessary';

    /**
     * Indicates that the message is to be read.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const READ = 'Read';

    /**
     * Indicates that the message needs a reply.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const REPLY = 'Reply';

    /**
     * Indicates that the message needs a reply to all recipients.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const REPLY_TO_ALL = 'ReplyToAll';

    /**
     * Indicates that the message has been flagged for review.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const REVIEW = 'Review';
}