_propDict)) { return $this->_propDict["insights"]; } else { return null; } } /** * Sets the insights * The insights for the category. Read-only. * * @param UserExperienceAnalyticsInsight[] $val The insights * * @return UserExperienceAnalyticsCategory */ public function setInsights($val) { $this->_propDict["insights"] = $val; return $this; } /** * Gets the metricValues * The metric values for the user experience analytics category. Read-only. * * @return array|null The metricValues */ public function getMetricValues() { if (array_key_exists("metricValues", $this->_propDict)) { return $this->_propDict["metricValues"]; } else { return null; } } /** * Sets the metricValues * The metric values for the user experience analytics category. Read-only. * * @param UserExperienceAnalyticsMetric[] $val The metricValues * * @return UserExperienceAnalyticsCategory */ public function setMetricValues($val) { $this->_propDict["metricValues"] = $val; return $this; } }