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_JobService_PostalAddress extends Google_Collection
19{
20  protected $collection_key = 'recipients';
21  public $addressLines;
22  public $administrativeArea;
23  public $languageCode;
24  public $locality;
25  public $organization;
26  public $postalCode;
27  public $recipients;
28  public $regionCode;
29  public $revision;
30  public $sortingCode;
31  public $sublocality;
32
33  public function setAddressLines($addressLines)
34  {
35    $this->addressLines = $addressLines;
36  }
37  public function getAddressLines()
38  {
39    return $this->addressLines;
40  }
41  public function setAdministrativeArea($administrativeArea)
42  {
43    $this->administrativeArea = $administrativeArea;
44  }
45  public function getAdministrativeArea()
46  {
47    return $this->administrativeArea;
48  }
49  public function setLanguageCode($languageCode)
50  {
51    $this->languageCode = $languageCode;
52  }
53  public function getLanguageCode()
54  {
55    return $this->languageCode;
56  }
57  public function setLocality($locality)
58  {
59    $this->locality = $locality;
60  }
61  public function getLocality()
62  {
63    return $this->locality;
64  }
65  public function setOrganization($organization)
66  {
67    $this->organization = $organization;
68  }
69  public function getOrganization()
70  {
71    return $this->organization;
72  }
73  public function setPostalCode($postalCode)
74  {
75    $this->postalCode = $postalCode;
76  }
77  public function getPostalCode()
78  {
79    return $this->postalCode;
80  }
81  public function setRecipients($recipients)
82  {
83    $this->recipients = $recipients;
84  }
85  public function getRecipients()
86  {
87    return $this->recipients;
88  }
89  public function setRegionCode($regionCode)
90  {
91    $this->regionCode = $regionCode;
92  }
93  public function getRegionCode()
94  {
95    return $this->regionCode;
96  }
97  public function setRevision($revision)
98  {
99    $this->revision = $revision;
100  }
101  public function getRevision()
102  {
103    return $this->revision;
104  }
105  public function setSortingCode($sortingCode)
106  {
107    $this->sortingCode = $sortingCode;
108  }
109  public function getSortingCode()
110  {
111    return $this->sortingCode;
112  }
113  public function setSublocality($sublocality)
114  {
115    $this->sublocality = $sublocality;
116  }
117  public function getSublocality()
118  {
119    return $this->sublocality;
120  }
121}
122