createTime = $createTime; } /** * @return string */ public function getCreateTime() { return $this->createTime; } /** * Output only. The intended destinations for the product review. * * @param ProductReviewDestinationStatus[] $destinationStatuses */ public function setDestinationStatuses($destinationStatuses) { $this->destinationStatuses = $destinationStatuses; } /** * @return ProductReviewDestinationStatus[] */ public function getDestinationStatuses() { return $this->destinationStatuses; } /** * Output only. A list of all issues associated with the product review. * * @param ProductReviewItemLevelIssue[] $itemLevelIssues */ public function setItemLevelIssues($itemLevelIssues) { $this->itemLevelIssues = $itemLevelIssues; } /** * @return ProductReviewItemLevelIssue[] */ public function getItemLevelIssues() { return $this->itemLevelIssues; } /** * Output only. Date on which the item has been last updated, in [ISO * 8601](http://en.wikipedia.org/wiki/ISO_8601) format. * * @param string $lastUpdateTime */ public function setLastUpdateTime($lastUpdateTime) { $this->lastUpdateTime = $lastUpdateTime; } /** * @return string */ public function getLastUpdateTime() { return $this->lastUpdateTime; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ProductReviewStatus::class, 'Google_Service_Merchant_ProductReviewStatus');