summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/UserPhotoTypeType.php
blob: 2477c7aeea5ddbe74b85203a3b076b9e87ff7348 (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\UserPhotoTypeType.
 */

namespace jamesiarmes\PhpEws\Enumeration;

use \jamesiarmes\PhpEws\Enumeration;

/**
 * Defines the type of a user photo.
 *
 * @package php-ews\Enumeration
 */
class UserPhotoTypeType extends Enumeration
{
    /**
     * Identifies a user photo as a profile header photo.
     *
     * @since Exchange 2016
     *
     * @var string
     */
    const PROFILE_HEADER_PHOTO = 'ProfileHeaderPhoto';

    /**
     * Identifies a user photo as the user's primary photo.
     *
     * @since Exchange 2016
     *
     * @var string
     */
    const USER_PHOTO = 'UserPhoto';
}