advertiserIds = $advertiserIds; } /** * @return string[] */ public function getAdvertiserIds() { return $this->advertiserIds; } /** * @param Buyer */ public function setBuyer(Buyer $buyer) { $this->buyer = $buyer; } /** * @return Buyer */ public function getBuyer() { return $this->buyer; } /** * @param Price */ public function setPrice(Price $price) { $this->price = $price; } /** * @return Price */ public function getPrice() { return $this->price; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(PricePerBuyer::class, 'Google_Service_AdExchangeBuyerII_PricePerBuyer');