summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ReminderActionType.php
blob: cd23c25da2d8fb91d436385d677f1bf26a20c6eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/**
 * Contains \jamesiarmes\PhpEws\Enumeration\ReminderActionType.
 */

namespace jamesiarmes\PhpEws\Enumeration;

use \jamesiarmes\PhpEws\Enumeration;

/**
 * Defines the action to take on a reminder.
 *
 * @package php-ews\Enumeration
 */
class ReminderActionType extends Enumeration
{
    /**
     * Dismiss the reminder.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const DISMISS = 'Dismiss';

    /**
     * Snooze the reminder.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const SNOOZE = 'Snooze';
}