_propDict)) { return $this->_propDict["isOfficePhoneAllowed"]; } else { return null; } } /** * Sets the isOfficePhoneAllowed * true if users can register office phones, otherwise, false. * * @param bool $val The isOfficePhoneAllowed * * @return VoiceAuthenticationMethodConfiguration */ public function setIsOfficePhoneAllowed($val) { $this->_propDict["isOfficePhoneAllowed"] = boolval($val); return $this; } /** * Gets the includeTargets * A collection of groups that are enabled to use the authentication method. Expanded by default. * * @return array|null The includeTargets */ public function getIncludeTargets() { if (array_key_exists("includeTargets", $this->_propDict)) { return $this->_propDict["includeTargets"]; } else { return null; } } /** * Sets the includeTargets * A collection of groups that are enabled to use the authentication method. Expanded by default. * * @param AuthenticationMethodTarget[] $val The includeTargets * * @return VoiceAuthenticationMethodConfiguration */ public function setIncludeTargets($val) { $this->_propDict["includeTargets"] = $val; return $this; } }