samplesReadCount = $samplesReadCount; } /** * @return string */ public function getSamplesReadCount() { return $this->samplesReadCount; } /** * The total number of events present in this property's data that could have * been analyzed in this report for a date range. Sampling uncovers the * meaningful information about the larger data set, and this is the size of * the larger data set. To calculate the percentage of available data that was * used in this report, compute `samplesReadCount/samplingSpaceSize`. * * @param string $samplingSpaceSize */ public function setSamplingSpaceSize($samplingSpaceSize) { $this->samplingSpaceSize = $samplingSpaceSize; } /** * @return string */ public function getSamplingSpaceSize() { return $this->samplingSpaceSize; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(SamplingMetadata::class, 'Google_Service_AnalyticsData_SamplingMetadata');