doubleValue = $doubleValue; } public function getDoubleValue() { return $this->doubleValue; } /** * Metric integer value. * * @param string $integerValue */ public function setIntegerValue($integerValue) { $this->integerValue = $integerValue; } /** * @return string */ public function getIntegerValue() { return $this->integerValue; } /** * Amount in micros. One million is equivalent to one unit. Currency value is * in the unit (USD, EUR or other) specified by the request. For example, * $6.50 whould be represented as 6500000 micros. * * @param string $microsValue */ public function setMicrosValue($microsValue) { $this->microsValue = $microsValue; } /** * @return string */ public function getMicrosValue() { return $this->microsValue; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ReportRowMetricValue::class, 'Google_Service_AdMob_ReportRowMetricValue');