source: vendor/google/apiclient-services/src/Solar/BuildingInsights.php@ e3d4e0a

Last change on this file since e3d4e0a was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 7 days ago

Upload project files

  • Property mode set to 100644
File size: 4.2 KB
Line 
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
18namespace Google\Service\Solar;
19
20class BuildingInsights extends \Google\Model
21{
22 /**
23 * @var string
24 */
25 public $administrativeArea;
26 protected $boundingBoxType = LatLngBox::class;
27 protected $boundingBoxDataType = '';
28 protected $centerType = LatLng::class;
29 protected $centerDataType = '';
30 protected $imageryDateType = Date::class;
31 protected $imageryDateDataType = '';
32 protected $imageryProcessedDateType = Date::class;
33 protected $imageryProcessedDateDataType = '';
34 /**
35 * @var string
36 */
37 public $imageryQuality;
38 /**
39 * @var string
40 */
41 public $name;
42 /**
43 * @var string
44 */
45 public $postalCode;
46 /**
47 * @var string
48 */
49 public $regionCode;
50 protected $solarPotentialType = SolarPotential::class;
51 protected $solarPotentialDataType = '';
52 /**
53 * @var string
54 */
55 public $statisticalArea;
56
57 /**
58 * @param string
59 */
60 public function setAdministrativeArea($administrativeArea)
61 {
62 $this->administrativeArea = $administrativeArea;
63 }
64 /**
65 * @return string
66 */
67 public function getAdministrativeArea()
68 {
69 return $this->administrativeArea;
70 }
71 /**
72 * @param LatLngBox
73 */
74 public function setBoundingBox(LatLngBox $boundingBox)
75 {
76 $this->boundingBox = $boundingBox;
77 }
78 /**
79 * @return LatLngBox
80 */
81 public function getBoundingBox()
82 {
83 return $this->boundingBox;
84 }
85 /**
86 * @param LatLng
87 */
88 public function setCenter(LatLng $center)
89 {
90 $this->center = $center;
91 }
92 /**
93 * @return LatLng
94 */
95 public function getCenter()
96 {
97 return $this->center;
98 }
99 /**
100 * @param Date
101 */
102 public function setImageryDate(Date $imageryDate)
103 {
104 $this->imageryDate = $imageryDate;
105 }
106 /**
107 * @return Date
108 */
109 public function getImageryDate()
110 {
111 return $this->imageryDate;
112 }
113 /**
114 * @param Date
115 */
116 public function setImageryProcessedDate(Date $imageryProcessedDate)
117 {
118 $this->imageryProcessedDate = $imageryProcessedDate;
119 }
120 /**
121 * @return Date
122 */
123 public function getImageryProcessedDate()
124 {
125 return $this->imageryProcessedDate;
126 }
127 /**
128 * @param string
129 */
130 public function setImageryQuality($imageryQuality)
131 {
132 $this->imageryQuality = $imageryQuality;
133 }
134 /**
135 * @return string
136 */
137 public function getImageryQuality()
138 {
139 return $this->imageryQuality;
140 }
141 /**
142 * @param string
143 */
144 public function setName($name)
145 {
146 $this->name = $name;
147 }
148 /**
149 * @return string
150 */
151 public function getName()
152 {
153 return $this->name;
154 }
155 /**
156 * @param string
157 */
158 public function setPostalCode($postalCode)
159 {
160 $this->postalCode = $postalCode;
161 }
162 /**
163 * @return string
164 */
165 public function getPostalCode()
166 {
167 return $this->postalCode;
168 }
169 /**
170 * @param string
171 */
172 public function setRegionCode($regionCode)
173 {
174 $this->regionCode = $regionCode;
175 }
176 /**
177 * @return string
178 */
179 public function getRegionCode()
180 {
181 return $this->regionCode;
182 }
183 /**
184 * @param SolarPotential
185 */
186 public function setSolarPotential(SolarPotential $solarPotential)
187 {
188 $this->solarPotential = $solarPotential;
189 }
190 /**
191 * @return SolarPotential
192 */
193 public function getSolarPotential()
194 {
195 return $this->solarPotential;
196 }
197 /**
198 * @param string
199 */
200 public function setStatisticalArea($statisticalArea)
201 {
202 $this->statisticalArea = $statisticalArea;
203 }
204 /**
205 * @return string
206 */
207 public function getStatisticalArea()
208 {
209 return $this->statisticalArea;
210 }
211}
212
213// Adding a class alias for backwards compatibility with the previous class name.
214class_alias(BuildingInsights::class, 'Google_Service_Solar_BuildingInsights');
Note: See TracBrowser for help on using the repository browser.