1
0
Fork 0
m365-php/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CustomerVoiceSettings.php

105 lines
3.0 KiB
PHP

<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* CustomerVoiceSettings File
* PHP version 7
*
* @category Library
* @package Microsoft.Graph
* @copyright (c) Microsoft Corporation. All rights reserved.
* @license https://opensource.org/licenses/MIT MIT License
* @link https://graph.microsoft.com
*/
namespace Beta\Microsoft\Graph\Model;
/**
* CustomerVoiceSettings class
*
* @category Model
* @package Microsoft.Graph
* @copyright (c) Microsoft Corporation. All rights reserved.
* @license https://opensource.org/licenses/MIT MIT License
* @link https://graph.microsoft.com
*/
class CustomerVoiceSettings extends Entity
{
/**
* Gets the isInOrgFormsPhishingScanEnabled
*
* @return bool|null The isInOrgFormsPhishingScanEnabled
*/
public function getIsInOrgFormsPhishingScanEnabled()
{
if (array_key_exists("isInOrgFormsPhishingScanEnabled", $this->_propDict)) {
return $this->_propDict["isInOrgFormsPhishingScanEnabled"];
} else {
return null;
}
}
/**
* Sets the isInOrgFormsPhishingScanEnabled
*
* @param bool $val The value of the isInOrgFormsPhishingScanEnabled
*
* @return CustomerVoiceSettings
*/
public function setIsInOrgFormsPhishingScanEnabled($val)
{
$this->_propDict["isInOrgFormsPhishingScanEnabled"] = $val;
return $this;
}
/**
* Gets the isRecordIdentityByDefaultEnabled
*
* @return bool|null The isRecordIdentityByDefaultEnabled
*/
public function getIsRecordIdentityByDefaultEnabled()
{
if (array_key_exists("isRecordIdentityByDefaultEnabled", $this->_propDict)) {
return $this->_propDict["isRecordIdentityByDefaultEnabled"];
} else {
return null;
}
}
/**
* Sets the isRecordIdentityByDefaultEnabled
*
* @param bool $val The value of the isRecordIdentityByDefaultEnabled
*
* @return CustomerVoiceSettings
*/
public function setIsRecordIdentityByDefaultEnabled($val)
{
$this->_propDict["isRecordIdentityByDefaultEnabled"] = $val;
return $this;
}
/**
* Gets the isRestrictedSurveyAccessEnabled
*
* @return bool|null The isRestrictedSurveyAccessEnabled
*/
public function getIsRestrictedSurveyAccessEnabled()
{
if (array_key_exists("isRestrictedSurveyAccessEnabled", $this->_propDict)) {
return $this->_propDict["isRestrictedSurveyAccessEnabled"];
} else {
return null;
}
}
/**
* Sets the isRestrictedSurveyAccessEnabled
*
* @param bool $val The value of the isRestrictedSurveyAccessEnabled
*
* @return CustomerVoiceSettings
*/
public function setIsRestrictedSurveyAccessEnabled($val)
{
$this->_propDict["isRestrictedSurveyAccessEnabled"] = $val;
return $this;
}
}