summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/UserPhotoSizeType.php
blob: 0c3661def9b7b80d87875d19682e991455ef3d47 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<?php
/**
 * Contains \jamesiarmes\PhpEws\Enumeration\UserPhotoSizeType.
 */

namespace jamesiarmes\PhpEws\Enumeration;

use \jamesiarmes\PhpEws\Enumeration;

/**
 * Defines the size of a user's photo being requested.
 *
 * @package php-ews\Enumeration
 */
class UserPhotoSizeType extends Enumeration
{
    /**
     * The image is 48 pixels high and 48 pixels wide.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const HR48X48 = 'HR48x48';

    /**
     * The image is 64 pixels high and 64 pixels wide.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const HR64X64 = 'HR64x64';

    /**
     * The image is 96 pixels high and 96 pixels wide.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const HR96X96 = 'HR96x96';

    /**
     * The image is 120 pixels high and 120 pixels wide.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const HR120X120 = 'HR120x120';

    /**
     * The image is 240 pixels high and 240 pixels wide.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const HR240X240 = 'HR240x240';

    /**
     * The image is 360 pixels high and 360 pixels wide.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const HR360X360 = 'HR360x360';

    /**
     * The image is 432 pixels high and 432 pixels wide.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const HR432X432 = 'HR432x432';

    /**
     * The image is 504 pixels high and 504 pixels wide.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const HR504X504 = 'HR504x504';

    /**
     * The image is 648 pixels high and 648 pixels wide.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const HR648X648 = 'HR648x648';

    /**
     * The image is 1024 pixels high and 1024 pixels wide.
     *
     * @since Exchange 2016
     *
     * @var string
     */
    const HR1024XN = 'HR1024xN';

    /**
     * The image is 1920 pixels high and 1920 pixels wide.
     *
     * @since Exchange 2016
     *
     * @var string
     */
    const HR1920XN = 'HR1920xN';
}