setODataType("#microsoft.graph.deviceManagementSettingAppConstraint"); } /** * Gets the supportedTypes * Acceptable app types to allow for this setting * * @return string|null The supportedTypes */ public function getSupportedTypes() { if (array_key_exists("supportedTypes", $this->_propDict)) { return $this->_propDict["supportedTypes"]; } else { return null; } } /** * Sets the supportedTypes * Acceptable app types to allow for this setting * * @param string $val The value of the supportedTypes * * @return DeviceManagementSettingAppConstraint */ public function setSupportedTypes($val) { $this->_propDict["supportedTypes"] = $val; return $this; } }