1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18class Google_Service_ShoppingContent_ProductsCustomBatchRequestEntry extends Google_Model
19{
20  public $batchId;
21  public $feedId;
22  public $merchantId;
23  public $method;
24  protected $productType = 'Google_Service_ShoppingContent_Product';
25  protected $productDataType = '';
26  public $productId;
27  public $updateMask;
28
29  public function setBatchId($batchId)
30  {
31    $this->batchId = $batchId;
32  }
33  public function getBatchId()
34  {
35    return $this->batchId;
36  }
37  public function setFeedId($feedId)
38  {
39    $this->feedId = $feedId;
40  }
41  public function getFeedId()
42  {
43    return $this->feedId;
44  }
45  public function setMerchantId($merchantId)
46  {
47    $this->merchantId = $merchantId;
48  }
49  public function getMerchantId()
50  {
51    return $this->merchantId;
52  }
53  public function setMethod($method)
54  {
55    $this->method = $method;
56  }
57  public function getMethod()
58  {
59    return $this->method;
60  }
61  /**
62   * @param Google_Service_ShoppingContent_Product
63   */
64  public function setProduct(Google_Service_ShoppingContent_Product $product)
65  {
66    $this->product = $product;
67  }
68  /**
69   * @return Google_Service_ShoppingContent_Product
70   */
71  public function getProduct()
72  {
73    return $this->product;
74  }
75  public function setProductId($productId)
76  {
77    $this->productId = $productId;
78  }
79  public function getProductId()
80  {
81    return $this->productId;
82  }
83  public function setUpdateMask($updateMask)
84  {
85    $this->updateMask = $updateMask;
86  }
87  public function getUpdateMask()
88  {
89    return $this->updateMask;
90  }
91}
92