customLabel0 = $customLabel0; } /** * @return string */ public function getCustomLabel0() { return $this->customLabel0; } /** * Label that you assign to a collection to help organize bidding and * reporting in Shopping campaigns. * * @param string $customLabel1 */ public function setCustomLabel1($customLabel1) { $this->customLabel1 = $customLabel1; } /** * @return string */ public function getCustomLabel1() { return $this->customLabel1; } /** * Label that you assign to a collection to help organize bidding and * reporting in Shopping campaigns. * * @param string $customLabel2 */ public function setCustomLabel2($customLabel2) { $this->customLabel2 = $customLabel2; } /** * @return string */ public function getCustomLabel2() { return $this->customLabel2; } /** * Label that you assign to a collection to help organize bidding and * reporting in Shopping campaigns. * * @param string $customLabel3 */ public function setCustomLabel3($customLabel3) { $this->customLabel3 = $customLabel3; } /** * @return string */ public function getCustomLabel3() { return $this->customLabel3; } /** * Label that you assign to a collection to help organize bidding and * reporting in Shopping campaigns. * * @param string $customLabel4 */ public function setCustomLabel4($customLabel4) { $this->customLabel4 = $customLabel4; } /** * @return string */ public function getCustomLabel4() { return $this->customLabel4; } /** * This identifies one or more products associated with the collection. Used * as a lookup to the corresponding product ID in your product feeds. Provide * a maximum of 100 featuredProduct (for collections). Provide up to 10 * featuredProduct (for Shoppable Images only) with ID and X and Y * coordinates. [featured_product * attribute](https://support.google.com/merchants/answer/9703736) * * @param CollectionFeaturedProduct[] $featuredProduct */ public function setFeaturedProduct($featuredProduct) { $this->featuredProduct = $featuredProduct; } /** * @return CollectionFeaturedProduct[] */ public function getFeaturedProduct() { return $this->featuredProduct; } /** * Your collection's name. [headline * attribute](https://support.google.com/merchants/answer/9673580) * * @param string[] $headline */ public function setHeadline($headline) { $this->headline = $headline; } /** * @return string[] */ public function getHeadline() { return $this->headline; } /** * Required. The REST ID of the collection. Content API methods that operate * on collections take this as their collectionId parameter. The REST ID for a * collection is of the form collectionId. [id * attribute](https://support.google.com/merchants/answer/9649290) * * @param string $id */ public function setId($id) { $this->id = $id; } /** * @return string */ public function getId() { return $this->id; } /** * The URL of a collection’s image. [image_link * attribute](https://support.google.com/merchants/answer/9703236) * * @param string[] $imageLink */ public function setImageLink($imageLink) { $this->imageLink = $imageLink; } /** * @return string[] */ public function getImageLink() { return $this->imageLink; } /** * The language of a collection and the language of any featured products * linked to the collection. [language * attribute](https://support.google.com/merchants/answer/9673781) * * @param string $language */ public function setLanguage($language) { $this->language = $language; } /** * @return string */ public function getLanguage() { return $this->language; } /** * A collection’s landing page. URL directly linking to your collection's page * on your website. [link * attribute](https://support.google.com/merchants/answer/9673983) * * @param string $link */ public function setLink($link) { $this->link = $link; } /** * @return string */ public function getLink() { return $this->link; } /** * A collection’s mobile-optimized landing page when you have a different URL * for mobile and desktop traffic. [mobile_link * attribute](https://support.google.com/merchants/answer/9646123) * * @param string $mobileLink */ public function setMobileLink($mobileLink) { $this->mobileLink = $mobileLink; } /** * @return string */ public function getMobileLink() { return $this->mobileLink; } /** * [product_country * attribute](https://support.google.com/merchants/answer/9674155) * * @param string $productCountry */ public function setProductCountry($productCountry) { $this->productCountry = $productCountry; } /** * @return string */ public function getProductCountry() { return $this->productCountry; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Collection::class, 'Google_Service_ShoppingContent_Collection');