summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/PullSubscriptionRequestType.php
blob: 73bd4d51de2e8b505205b46d05cfec2ea9f9be83 (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
<?php
/**
 * Contains \jamesiarmes\PhpEws\Type\PullSubscriptionRequestType.
 */

namespace jamesiarmes\PhpEws\Type;

/**
 * Represents a subscription to a pull-based event notification subscription.
 *
 * @package php-ews\Type
 */
class PullSubscriptionRequestType extends BaseSubscriptionRequestType
{
    /**
     * Represents the duration, in minutes, that the subscription can remain
     * idle without a GetEvents request from the client.
     *
     * @since Exchange 2007
     *
     * @var integer
     *
     * @todo Determine if we need SubscriptionTimeoutType.
     */
    public $Timeout;
}