summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Response/GetPasswordExpirationDateResponseMessageType.php
blob: 0d030043d8dfd35433a5d2f03f4e32afb01032d8 (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
<?php
/**
 * Contains \jamesiarmes\PhpEws\Response\GetPasswordExpirationDateResponseMessageType.
 */

namespace jamesiarmes\PhpEws\Response;

/**
 * Defines the response to a GetPasswordExpirationDate operation operation
 * request.
 *
 * @package php-ews\Response
 */
class GetPasswordExpirationDateResponseMessageType extends ResponseMessageType
{
    /**
     * Provides the password expiration date for the email account specified in
     * the request.
     *
     * @since Exchange 2010 SP2
     *
     * @var string
     *
     * @todo Make a DateTime object.
     */
    public $PasswordExpirationDate;
}