costs = $costs; } /** * @return float[] */ public function getCosts() { return $this->costs; } /** * @param string */ public function setCurrencyCode($currencyCode) { $this->currencyCode = $currencyCode; } /** * @return string */ public function getCurrencyCode() { return $this->currencyCode; } /** * @param string */ public function setId($id) { $this->id = $id; } /** * @return string */ public function getId() { return $this->id; } /** * @param float */ public function setRevenue($revenue) { $this->revenue = $revenue; } /** * @return float */ public function getRevenue() { return $this->revenue; } /** * @param float[] */ public function setTaxes($taxes) { $this->taxes = $taxes; } /** * @return float[] */ public function getTaxes() { return $this->taxes; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudRecommendationengineV1beta1PurchaseTransaction::class, 'Google_Service_RecommendationsAI_GoogleCloudRecommendationengineV1beta1PurchaseTransaction');