diff options
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Response/GetUserOofSettingsResponse.php')
-rw-r--r-- | modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Response/GetUserOofSettingsResponse.php | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Response/GetUserOofSettingsResponse.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Response/GetUserOofSettingsResponse.php new file mode 100644 index 00000000..635e570f --- /dev/null +++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Response/GetUserOofSettingsResponse.php @@ -0,0 +1,46 @@ +<?php +/** + * Contains \jamesiarmes\PhpEws\Response\GetUserOofSettingsResponse. + */ + +namespace jamesiarmes\PhpEws\Response; + +use \jamesiarmes\PhpEws\Response; + +/** + * Represents the response message and the Out of Office (OOF) settings for a + * user. + * + * @package php-ews\Response + */ +class GetUserOofSettingsResponse extends Response +{ + /** + * Contains a value that identifies to whom external OOF messages are sent. + * + * @since Exchange 2007 + * + * @var string + * + * @see \jamesiarmes\PhpEws\Enumeration\ExternalAudience + */ + public $AllowExternalOof; + + /** + * Contains the OOF settings. + * + * @since Exchange 2007 + * + * @var \jamesiarmes\PhpEws\Type\UserOofSettings + */ + public $OofSettings; + + /** + * Provides descriptive information about the response status. + * + * @since Exchange 2007 + * + * @var \jamesiarmes\PhpEws\Response\ResponseMessageType + */ + public $ResponseMessage; +} |