auctionTier = $auctionTier; } public function getAuctionTier() { return $this->auctionTier; } /** * @param Buyer */ public function setBilledBuyer(Buyer $billedBuyer) { $this->billedBuyer = $billedBuyer; } /** * @return Buyer */ public function getBilledBuyer() { return $this->billedBuyer; } /** * @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_AdExchangeBuyer_PricePerBuyer');