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_ProductTax extends Google_Model
19{
20  public $country;
21  public $locationId;
22  public $postalCode;
23  public $rate;
24  public $region;
25  public $taxShip;
26
27  public function setCountry($country)
28  {
29    $this->country = $country;
30  }
31  public function getCountry()
32  {
33    return $this->country;
34  }
35  public function setLocationId($locationId)
36  {
37    $this->locationId = $locationId;
38  }
39  public function getLocationId()
40  {
41    return $this->locationId;
42  }
43  public function setPostalCode($postalCode)
44  {
45    $this->postalCode = $postalCode;
46  }
47  public function getPostalCode()
48  {
49    return $this->postalCode;
50  }
51  public function setRate($rate)
52  {
53    $this->rate = $rate;
54  }
55  public function getRate()
56  {
57    return $this->rate;
58  }
59  public function setRegion($region)
60  {
61    $this->region = $region;
62  }
63  public function getRegion()
64  {
65    return $this->region;
66  }
67  public function setTaxShip($taxShip)
68  {
69    $this->taxShip = $taxShip;
70  }
71  public function getTaxShip()
72  {
73    return $this->taxShip;
74  }
75}
76