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_AccountStatusAccountLevelIssue extends Google_Model
19{
20  public $country;
21  public $destination;
22  public $detail;
23  public $documentation;
24  public $id;
25  public $severity;
26  public $title;
27
28  public function setCountry($country)
29  {
30    $this->country = $country;
31  }
32  public function getCountry()
33  {
34    return $this->country;
35  }
36  public function setDestination($destination)
37  {
38    $this->destination = $destination;
39  }
40  public function getDestination()
41  {
42    return $this->destination;
43  }
44  public function setDetail($detail)
45  {
46    $this->detail = $detail;
47  }
48  public function getDetail()
49  {
50    return $this->detail;
51  }
52  public function setDocumentation($documentation)
53  {
54    $this->documentation = $documentation;
55  }
56  public function getDocumentation()
57  {
58    return $this->documentation;
59  }
60  public function setId($id)
61  {
62    $this->id = $id;
63  }
64  public function getId()
65  {
66    return $this->id;
67  }
68  public function setSeverity($severity)
69  {
70    $this->severity = $severity;
71  }
72  public function getSeverity()
73  {
74    return $this->severity;
75  }
76  public function setTitle($title)
77  {
78    $this->title = $title;
79  }
80  public function getTitle()
81  {
82    return $this->title;
83  }
84}
85