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_ProductShipping extends Google_Model
19{
20  public $country;
21  public $locationGroupName;
22  public $locationId;
23  public $postalCode;
24  protected $priceType = 'Google_Service_ShoppingContent_Price';
25  protected $priceDataType = '';
26  public $region;
27  public $service;
28
29  public function setCountry($country)
30  {
31    $this->country = $country;
32  }
33  public function getCountry()
34  {
35    return $this->country;
36  }
37  public function setLocationGroupName($locationGroupName)
38  {
39    $this->locationGroupName = $locationGroupName;
40  }
41  public function getLocationGroupName()
42  {
43    return $this->locationGroupName;
44  }
45  public function setLocationId($locationId)
46  {
47    $this->locationId = $locationId;
48  }
49  public function getLocationId()
50  {
51    return $this->locationId;
52  }
53  public function setPostalCode($postalCode)
54  {
55    $this->postalCode = $postalCode;
56  }
57  public function getPostalCode()
58  {
59    return $this->postalCode;
60  }
61  /**
62   * @param Google_Service_ShoppingContent_Price
63   */
64  public function setPrice(Google_Service_ShoppingContent_Price $price)
65  {
66    $this->price = $price;
67  }
68  /**
69   * @return Google_Service_ShoppingContent_Price
70   */
71  public function getPrice()
72  {
73    return $this->price;
74  }
75  public function setRegion($region)
76  {
77    $this->region = $region;
78  }
79  public function getRegion()
80  {
81    return $this->region;
82  }
83  public function setService($service)
84  {
85    $this->service = $service;
86  }
87  public function getService()
88  {
89    return $this->service;
90  }
91}
92