source: vendor/google/apiclient-services/src/SASPortalTesting/SasPortalInstallationParams.php

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

Upload project files

  • Property mode set to 100644
File size: 4.4 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\SASPortalTesting;
19
20class SasPortalInstallationParams extends \Google\Model
21{
22 /**
23 * @var int
24 */
25 public $antennaAzimuth;
26 /**
27 * @var int
28 */
29 public $antennaBeamwidth;
30 /**
31 * @var int
32 */
33 public $antennaDowntilt;
34 public $antennaGain;
35 /**
36 * @var string
37 */
38 public $antennaModel;
39 /**
40 * @var bool
41 */
42 public $cpeCbsdIndication;
43 /**
44 * @var int
45 */
46 public $eirpCapability;
47 public $height;
48 /**
49 * @var string
50 */
51 public $heightType;
52 public $horizontalAccuracy;
53 /**
54 * @var bool
55 */
56 public $indoorDeployment;
57 public $latitude;
58 public $longitude;
59 public $verticalAccuracy;
60
61 /**
62 * @param int
63 */
64 public function setAntennaAzimuth($antennaAzimuth)
65 {
66 $this->antennaAzimuth = $antennaAzimuth;
67 }
68 /**
69 * @return int
70 */
71 public function getAntennaAzimuth()
72 {
73 return $this->antennaAzimuth;
74 }
75 /**
76 * @param int
77 */
78 public function setAntennaBeamwidth($antennaBeamwidth)
79 {
80 $this->antennaBeamwidth = $antennaBeamwidth;
81 }
82 /**
83 * @return int
84 */
85 public function getAntennaBeamwidth()
86 {
87 return $this->antennaBeamwidth;
88 }
89 /**
90 * @param int
91 */
92 public function setAntennaDowntilt($antennaDowntilt)
93 {
94 $this->antennaDowntilt = $antennaDowntilt;
95 }
96 /**
97 * @return int
98 */
99 public function getAntennaDowntilt()
100 {
101 return $this->antennaDowntilt;
102 }
103 public function setAntennaGain($antennaGain)
104 {
105 $this->antennaGain = $antennaGain;
106 }
107 public function getAntennaGain()
108 {
109 return $this->antennaGain;
110 }
111 /**
112 * @param string
113 */
114 public function setAntennaModel($antennaModel)
115 {
116 $this->antennaModel = $antennaModel;
117 }
118 /**
119 * @return string
120 */
121 public function getAntennaModel()
122 {
123 return $this->antennaModel;
124 }
125 /**
126 * @param bool
127 */
128 public function setCpeCbsdIndication($cpeCbsdIndication)
129 {
130 $this->cpeCbsdIndication = $cpeCbsdIndication;
131 }
132 /**
133 * @return bool
134 */
135 public function getCpeCbsdIndication()
136 {
137 return $this->cpeCbsdIndication;
138 }
139 /**
140 * @param int
141 */
142 public function setEirpCapability($eirpCapability)
143 {
144 $this->eirpCapability = $eirpCapability;
145 }
146 /**
147 * @return int
148 */
149 public function getEirpCapability()
150 {
151 return $this->eirpCapability;
152 }
153 public function setHeight($height)
154 {
155 $this->height = $height;
156 }
157 public function getHeight()
158 {
159 return $this->height;
160 }
161 /**
162 * @param string
163 */
164 public function setHeightType($heightType)
165 {
166 $this->heightType = $heightType;
167 }
168 /**
169 * @return string
170 */
171 public function getHeightType()
172 {
173 return $this->heightType;
174 }
175 public function setHorizontalAccuracy($horizontalAccuracy)
176 {
177 $this->horizontalAccuracy = $horizontalAccuracy;
178 }
179 public function getHorizontalAccuracy()
180 {
181 return $this->horizontalAccuracy;
182 }
183 /**
184 * @param bool
185 */
186 public function setIndoorDeployment($indoorDeployment)
187 {
188 $this->indoorDeployment = $indoorDeployment;
189 }
190 /**
191 * @return bool
192 */
193 public function getIndoorDeployment()
194 {
195 return $this->indoorDeployment;
196 }
197 public function setLatitude($latitude)
198 {
199 $this->latitude = $latitude;
200 }
201 public function getLatitude()
202 {
203 return $this->latitude;
204 }
205 public function setLongitude($longitude)
206 {
207 $this->longitude = $longitude;
208 }
209 public function getLongitude()
210 {
211 return $this->longitude;
212 }
213 public function setVerticalAccuracy($verticalAccuracy)
214 {
215 $this->verticalAccuracy = $verticalAccuracy;
216 }
217 public function getVerticalAccuracy()
218 {
219 return $this->verticalAccuracy;
220 }
221}
222
223// Adding a class alias for backwards compatibility with the previous class name.
224class_alias(SasPortalInstallationParams::class, 'Google_Service_SASPortalTesting_SasPortalInstallationParams');
Note: See TracBrowser for help on using the repository browser.