attributes = $attributes; } /** * @return MerchantReviewAttributes */ public function getAttributes() { return $this->attributes; } /** * @param CustomAttribute[] */ public function setCustomAttributes($customAttributes) { $this->customAttributes = $customAttributes; } /** * @return CustomAttribute[] */ public function getCustomAttributes() { return $this->customAttributes; } /** * @param string */ public function setDataSource($dataSource) { $this->dataSource = $dataSource; } /** * @return string */ public function getDataSource() { return $this->dataSource; } /** * @param string */ public function setMerchantReviewId($merchantReviewId) { $this->merchantReviewId = $merchantReviewId; } /** * @return string */ public function getMerchantReviewId() { return $this->merchantReviewId; } /** * @param MerchantReviewStatus */ public function setMerchantReviewStatus(MerchantReviewStatus $merchantReviewStatus) { $this->merchantReviewStatus = $merchantReviewStatus; } /** * @return MerchantReviewStatus */ public function getMerchantReviewStatus() { return $this->merchantReviewStatus; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(MerchantReview::class, 'Google_Service_Merchant_MerchantReview');