설명 없음

MobileDevice.php 8.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  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. class Google_Service_Directory_MobileDevice extends Google_Collection
  18. {
  19. protected $collection_key = 'otherAccountsInfo';
  20. public $adbStatus;
  21. protected $applicationsType = 'Google_Service_Directory_MobileDeviceApplications';
  22. protected $applicationsDataType = 'array';
  23. public $basebandVersion;
  24. public $bootloaderVersion;
  25. public $brand;
  26. public $buildNumber;
  27. public $defaultLanguage;
  28. public $developerOptionsStatus;
  29. public $deviceCompromisedStatus;
  30. public $deviceId;
  31. public $devicePasswordStatus;
  32. public $email;
  33. public $encryptionStatus;
  34. public $etag;
  35. public $firstSync;
  36. public $hardware;
  37. public $hardwareId;
  38. public $imei;
  39. public $kernelVersion;
  40. public $kind;
  41. public $lastSync;
  42. public $managedAccountIsOnOwnerProfile;
  43. public $manufacturer;
  44. public $meid;
  45. public $model;
  46. public $name;
  47. public $networkOperator;
  48. public $os;
  49. public $otherAccountsInfo;
  50. public $privilege;
  51. public $releaseVersion;
  52. public $resourceId;
  53. public $securityPatchLevel;
  54. public $serialNumber;
  55. public $status;
  56. public $supportsWorkProfile;
  57. public $type;
  58. public $unknownSourcesStatus;
  59. public $userAgent;
  60. public $wifiMacAddress;
  61. public function setAdbStatus($adbStatus)
  62. {
  63. $this->adbStatus = $adbStatus;
  64. }
  65. public function getAdbStatus()
  66. {
  67. return $this->adbStatus;
  68. }
  69. /**
  70. * @param Google_Service_Directory_MobileDeviceApplications
  71. */
  72. public function setApplications($applications)
  73. {
  74. $this->applications = $applications;
  75. }
  76. /**
  77. * @return Google_Service_Directory_MobileDeviceApplications
  78. */
  79. public function getApplications()
  80. {
  81. return $this->applications;
  82. }
  83. public function setBasebandVersion($basebandVersion)
  84. {
  85. $this->basebandVersion = $basebandVersion;
  86. }
  87. public function getBasebandVersion()
  88. {
  89. return $this->basebandVersion;
  90. }
  91. public function setBootloaderVersion($bootloaderVersion)
  92. {
  93. $this->bootloaderVersion = $bootloaderVersion;
  94. }
  95. public function getBootloaderVersion()
  96. {
  97. return $this->bootloaderVersion;
  98. }
  99. public function setBrand($brand)
  100. {
  101. $this->brand = $brand;
  102. }
  103. public function getBrand()
  104. {
  105. return $this->brand;
  106. }
  107. public function setBuildNumber($buildNumber)
  108. {
  109. $this->buildNumber = $buildNumber;
  110. }
  111. public function getBuildNumber()
  112. {
  113. return $this->buildNumber;
  114. }
  115. public function setDefaultLanguage($defaultLanguage)
  116. {
  117. $this->defaultLanguage = $defaultLanguage;
  118. }
  119. public function getDefaultLanguage()
  120. {
  121. return $this->defaultLanguage;
  122. }
  123. public function setDeveloperOptionsStatus($developerOptionsStatus)
  124. {
  125. $this->developerOptionsStatus = $developerOptionsStatus;
  126. }
  127. public function getDeveloperOptionsStatus()
  128. {
  129. return $this->developerOptionsStatus;
  130. }
  131. public function setDeviceCompromisedStatus($deviceCompromisedStatus)
  132. {
  133. $this->deviceCompromisedStatus = $deviceCompromisedStatus;
  134. }
  135. public function getDeviceCompromisedStatus()
  136. {
  137. return $this->deviceCompromisedStatus;
  138. }
  139. public function setDeviceId($deviceId)
  140. {
  141. $this->deviceId = $deviceId;
  142. }
  143. public function getDeviceId()
  144. {
  145. return $this->deviceId;
  146. }
  147. public function setDevicePasswordStatus($devicePasswordStatus)
  148. {
  149. $this->devicePasswordStatus = $devicePasswordStatus;
  150. }
  151. public function getDevicePasswordStatus()
  152. {
  153. return $this->devicePasswordStatus;
  154. }
  155. public function setEmail($email)
  156. {
  157. $this->email = $email;
  158. }
  159. public function getEmail()
  160. {
  161. return $this->email;
  162. }
  163. public function setEncryptionStatus($encryptionStatus)
  164. {
  165. $this->encryptionStatus = $encryptionStatus;
  166. }
  167. public function getEncryptionStatus()
  168. {
  169. return $this->encryptionStatus;
  170. }
  171. public function setEtag($etag)
  172. {
  173. $this->etag = $etag;
  174. }
  175. public function getEtag()
  176. {
  177. return $this->etag;
  178. }
  179. public function setFirstSync($firstSync)
  180. {
  181. $this->firstSync = $firstSync;
  182. }
  183. public function getFirstSync()
  184. {
  185. return $this->firstSync;
  186. }
  187. public function setHardware($hardware)
  188. {
  189. $this->hardware = $hardware;
  190. }
  191. public function getHardware()
  192. {
  193. return $this->hardware;
  194. }
  195. public function setHardwareId($hardwareId)
  196. {
  197. $this->hardwareId = $hardwareId;
  198. }
  199. public function getHardwareId()
  200. {
  201. return $this->hardwareId;
  202. }
  203. public function setImei($imei)
  204. {
  205. $this->imei = $imei;
  206. }
  207. public function getImei()
  208. {
  209. return $this->imei;
  210. }
  211. public function setKernelVersion($kernelVersion)
  212. {
  213. $this->kernelVersion = $kernelVersion;
  214. }
  215. public function getKernelVersion()
  216. {
  217. return $this->kernelVersion;
  218. }
  219. public function setKind($kind)
  220. {
  221. $this->kind = $kind;
  222. }
  223. public function getKind()
  224. {
  225. return $this->kind;
  226. }
  227. public function setLastSync($lastSync)
  228. {
  229. $this->lastSync = $lastSync;
  230. }
  231. public function getLastSync()
  232. {
  233. return $this->lastSync;
  234. }
  235. public function setManagedAccountIsOnOwnerProfile($managedAccountIsOnOwnerProfile)
  236. {
  237. $this->managedAccountIsOnOwnerProfile = $managedAccountIsOnOwnerProfile;
  238. }
  239. public function getManagedAccountIsOnOwnerProfile()
  240. {
  241. return $this->managedAccountIsOnOwnerProfile;
  242. }
  243. public function setManufacturer($manufacturer)
  244. {
  245. $this->manufacturer = $manufacturer;
  246. }
  247. public function getManufacturer()
  248. {
  249. return $this->manufacturer;
  250. }
  251. public function setMeid($meid)
  252. {
  253. $this->meid = $meid;
  254. }
  255. public function getMeid()
  256. {
  257. return $this->meid;
  258. }
  259. public function setModel($model)
  260. {
  261. $this->model = $model;
  262. }
  263. public function getModel()
  264. {
  265. return $this->model;
  266. }
  267. public function setName($name)
  268. {
  269. $this->name = $name;
  270. }
  271. public function getName()
  272. {
  273. return $this->name;
  274. }
  275. public function setNetworkOperator($networkOperator)
  276. {
  277. $this->networkOperator = $networkOperator;
  278. }
  279. public function getNetworkOperator()
  280. {
  281. return $this->networkOperator;
  282. }
  283. public function setOs($os)
  284. {
  285. $this->os = $os;
  286. }
  287. public function getOs()
  288. {
  289. return $this->os;
  290. }
  291. public function setOtherAccountsInfo($otherAccountsInfo)
  292. {
  293. $this->otherAccountsInfo = $otherAccountsInfo;
  294. }
  295. public function getOtherAccountsInfo()
  296. {
  297. return $this->otherAccountsInfo;
  298. }
  299. public function setPrivilege($privilege)
  300. {
  301. $this->privilege = $privilege;
  302. }
  303. public function getPrivilege()
  304. {
  305. return $this->privilege;
  306. }
  307. public function setReleaseVersion($releaseVersion)
  308. {
  309. $this->releaseVersion = $releaseVersion;
  310. }
  311. public function getReleaseVersion()
  312. {
  313. return $this->releaseVersion;
  314. }
  315. public function setResourceId($resourceId)
  316. {
  317. $this->resourceId = $resourceId;
  318. }
  319. public function getResourceId()
  320. {
  321. return $this->resourceId;
  322. }
  323. public function setSecurityPatchLevel($securityPatchLevel)
  324. {
  325. $this->securityPatchLevel = $securityPatchLevel;
  326. }
  327. public function getSecurityPatchLevel()
  328. {
  329. return $this->securityPatchLevel;
  330. }
  331. public function setSerialNumber($serialNumber)
  332. {
  333. $this->serialNumber = $serialNumber;
  334. }
  335. public function getSerialNumber()
  336. {
  337. return $this->serialNumber;
  338. }
  339. public function setStatus($status)
  340. {
  341. $this->status = $status;
  342. }
  343. public function getStatus()
  344. {
  345. return $this->status;
  346. }
  347. public function setSupportsWorkProfile($supportsWorkProfile)
  348. {
  349. $this->supportsWorkProfile = $supportsWorkProfile;
  350. }
  351. public function getSupportsWorkProfile()
  352. {
  353. return $this->supportsWorkProfile;
  354. }
  355. public function setType($type)
  356. {
  357. $this->type = $type;
  358. }
  359. public function getType()
  360. {
  361. return $this->type;
  362. }
  363. public function setUnknownSourcesStatus($unknownSourcesStatus)
  364. {
  365. $this->unknownSourcesStatus = $unknownSourcesStatus;
  366. }
  367. public function getUnknownSourcesStatus()
  368. {
  369. return $this->unknownSourcesStatus;
  370. }
  371. public function setUserAgent($userAgent)
  372. {
  373. $this->userAgent = $userAgent;
  374. }
  375. public function getUserAgent()
  376. {
  377. return $this->userAgent;
  378. }
  379. public function setWifiMacAddress($wifiMacAddress)
  380. {
  381. $this->wifiMacAddress = $wifiMacAddress;
  382. }
  383. public function getWifiMacAddress()
  384. {
  385. return $this->wifiMacAddress;
  386. }
  387. }