blob: ade0952c4ad53d1b947edbc78b163fc6c30cb813 (
plain) (
tree)
|
|
<?php
/**
* Contains \jamesiarmes\PhpEws\Request\SetUserOofSettingsRequest.
*/
namespace jamesiarmes\PhpEws\Request;
/**
* Defines the arguments used to set a mailbox user's Out of Office (OOF)
* settings.
*
* @package php-ews\Request
*/
class SetUserOofSettingsRequest extends BaseRequestType
{
/**
* Identifies the mailbox user for a SetUserOofSettings or
* GetUserOofSettings request.
*
* @since Exchange 2007
*
* @var \jamesiarmes\PhpEws\Type\EmailAddressType
*/
public $Mailbox;
/**
* Specifies the OOF settings.
*
* @since Exchange 2007
*
* @var \jamesiarmes\PhpEws\Type\UserOofSettings
*/
public $UserOofSettings;
}
|