Viewing file: Collection.php (3.32 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php /* * Copyright 2014 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */
class Google_Service_ShoppingContent_Collection extends Google_Collection { protected $collection_key = 'imageLink'; public $customLabel0; public $customLabel1; public $customLabel2; public $customLabel3; public $customLabel4; protected $featuredProductType = 'Google_Service_ShoppingContent_CollectionFeaturedProduct'; protected $featuredProductDataType = 'array'; public $headline; public $id; public $imageLink; public $language; public $link; public $mobileLink; public $productCountry;
public function setCustomLabel0($customLabel0) { $this->customLabel0 = $customLabel0; } public function getCustomLabel0() { return $this->customLabel0; } public function setCustomLabel1($customLabel1) { $this->customLabel1 = $customLabel1; } public function getCustomLabel1() { return $this->customLabel1; } public function setCustomLabel2($customLabel2) { $this->customLabel2 = $customLabel2; } public function getCustomLabel2() { return $this->customLabel2; } public function setCustomLabel3($customLabel3) { $this->customLabel3 = $customLabel3; } public function getCustomLabel3() { return $this->customLabel3; } public function setCustomLabel4($customLabel4) { $this->customLabel4 = $customLabel4; } public function getCustomLabel4() { return $this->customLabel4; } /** * @param Google_Service_ShoppingContent_CollectionFeaturedProduct[] */ public function setFeaturedProduct($featuredProduct) { $this->featuredProduct = $featuredProduct; } /** * @return Google_Service_ShoppingContent_CollectionFeaturedProduct[] */ public function getFeaturedProduct() { return $this->featuredProduct; } public function setHeadline($headline) { $this->headline = $headline; } public function getHeadline() { return $this->headline; } public function setId($id) { $this->id = $id; } public function getId() { return $this->id; } public function setImageLink($imageLink) { $this->imageLink = $imageLink; } public function getImageLink() { return $this->imageLink; } public function setLanguage($language) { $this->language = $language; } public function getLanguage() { return $this->language; } public function setLink($link) { $this->link = $link; } public function getLink() { return $this->link; } public function setMobileLink($mobileLink) { $this->mobileLink = $mobileLink; } public function getMobileLink() { return $this->mobileLink; } public function setProductCountry($productCountry) { $this->productCountry = $productCountry; } public function getProductCountry() { return $this->productCountry; } }
|