items = $items; } /** * @return CartDataItem[] */ public function getItems() { return $this->items; } /** * @param string */ public function setMerchantFeedLabel($merchantFeedLabel) { $this->merchantFeedLabel = $merchantFeedLabel; } /** * @return string */ public function getMerchantFeedLabel() { return $this->merchantFeedLabel; } /** * @param string */ public function setMerchantFeedLanguage($merchantFeedLanguage) { $this->merchantFeedLanguage = $merchantFeedLanguage; } /** * @return string */ public function getMerchantFeedLanguage() { return $this->merchantFeedLanguage; } /** * @param string */ public function setMerchantId($merchantId) { $this->merchantId = $merchantId; } /** * @return string */ public function getMerchantId() { return $this->merchantId; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(CartData::class, 'Google_Service_Dfareporting_CartData');