customAttributes = $customAttributes; } /** * @return CustomAttribute[] */ public function getCustomAttributes() { return $this->customAttributes; } /** * Output only. The primary data source of the merchant review. * * @param string $dataSource */ public function setDataSource($dataSource) { $this->dataSource = $dataSource; } /** * @return string */ public function getDataSource() { return $this->dataSource; } /** * Optional. A list of merchant review attributes. * * @param MerchantReviewAttributes $merchantReviewAttributes */ public function setMerchantReviewAttributes(MerchantReviewAttributes $merchantReviewAttributes) { $this->merchantReviewAttributes = $merchantReviewAttributes; } /** * @return MerchantReviewAttributes */ public function getMerchantReviewAttributes() { return $this->merchantReviewAttributes; } /** * Required. The user provided merchant review ID to uniquely identify the * merchant review. * * @param string $merchantReviewId */ public function setMerchantReviewId($merchantReviewId) { $this->merchantReviewId = $merchantReviewId; } /** * @return string */ public function getMerchantReviewId() { return $this->merchantReviewId; } /** * Output only. The status of a merchant review, data validation issues, that * is, information about a merchant review computed asynchronously. * * @param MerchantReviewStatus $merchantReviewStatus */ public function setMerchantReviewStatus(MerchantReviewStatus $merchantReviewStatus) { $this->merchantReviewStatus = $merchantReviewStatus; } /** * @return MerchantReviewStatus */ public function getMerchantReviewStatus() { return $this->merchantReviewStatus; } /** * Identifier. The name of the merchant review. Format: `"{merchantreview.name * =accounts/{account}/merchantReviews/{merchantReview}}"` * * @param string $name */ 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');