cpcBidCeilingMicros = $cpcBidCeilingMicros; } /** * @return string */ public function getCpcBidCeilingMicros() { return $this->cpcBidCeilingMicros; } /** * The targeted location on the search results page. * * Accepted values: UNSPECIFIED, UNKNOWN, ANYWHERE_ON_PAGE, TOP_OF_PAGE, * ABSOLUTE_TOP_OF_PAGE * * @param self::LOCATION_* $location */ public function setLocation($location) { $this->location = $location; } /** * @return self::LOCATION_* */ public function getLocation() { return $this->location; } /** * The chosen fraction of ads to be shown in the targeted location in micros. * For example, 1% equals 10,000. * * @param string $locationFractionMicros */ public function setLocationFractionMicros($locationFractionMicros) { $this->locationFractionMicros = $locationFractionMicros; } /** * @return string */ public function getLocationFractionMicros() { return $this->locationFractionMicros; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleAdsSearchads360V0CommonTargetImpressionShare::class, 'Google_Service_SA360_GoogleAdsSearchads360V0CommonTargetImpressionShare');