blob: bdd082cfbb6bbfcf8e1a63de37d37051b75e86cb (
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
35
36
37
38
39
40
41
42
43
|
<?php
/**
* Contains \jamesiarmes\PhpEws\Enumeration\Scope.
*/
namespace jamesiarmes\PhpEws\Enumeration;
use \jamesiarmes\PhpEws\Enumeration;
/**
* Defines the scope of a message tracking report.
*
* @package php-ews\Enumeration
*/
class Scope extends Enumeration
{
/**
* The message tracking scopes spans across a forest.
*
* @since Exchange 2010
*
* @var string
*/
const FOREST = 'Forest';
/**
* The message tracking scopes spans across an organization.
*
* @since Exchange 2010
*
* @var string
*/
const ORGANIZATION = 'Organization';
/**
* The message tracking scopes spans across a site.
*
* @since Exchange 2010
*
* @var string
*/
const SITE = 'Site';
}
|