blob: f89b08bb680e5f6b979ccc697e2e9403579a5d32 (
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\ReminderGroup.
*/
namespace jamesiarmes\PhpEws\Enumeration;
use \jamesiarmes\PhpEws\Enumeration;
/**
* Defines whether the reminder is for a calendar item or a task.
*
* @package php-ews\Enumeration
*/
class ReminderGroup extends Enumeration
{
/**
* Specifies that the reminder is for a calendar item.
*
* @since Exchange 2013
*
* @var string
*/
const CALENDAR = 'Calendar';
/**
* Specifies that the reminder is for a task item.
*
* @since Exchange 2013
*
* @var string
*/
const TASK = 'Task';
}
|