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

namespace jamesiarmes\PhpEws\Type;

/**
 * Represents a subscription to a push-based event notification subscription.
 *
 * @package php-ews\Type
 */
class PushSubscriptionRequestType extends BaseSubscriptionRequestType
{
    /**
     * Represents the frequency, specified in minutes, at which notification
     * messages will be sent to the client when no events have occurred.
     *
     * @since Exchange 2007
     *
     * @var integer
     *
     * @todo Determine if we need SubscriptionStatusFrequencyType.
     */
    public $StatusFrequency;

    /**
     * Represents the location of the client Web service for push notifications.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    public $URL;
}