EVOLUTION-MANAGER
Edit File: DeviceDescriptor.php
<?php /* * Copyright 2014 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ class Google_Service_Spectrum_DeviceDescriptor extends Google_Collection { protected $collection_key = 'rulesetIds'; public $etsiEnDeviceCategory; public $etsiEnDeviceEmissionsClass; public $etsiEnDeviceType; public $etsiEnTechnologyId; public $fccId; public $fccTvbdDeviceType; public $manufacturerId; public $modelId; public $rulesetIds; public $serialNumber; public function setEtsiEnDeviceCategory($etsiEnDeviceCategory) { $this->etsiEnDeviceCategory = $etsiEnDeviceCategory; } public function getEtsiEnDeviceCategory() { return $this->etsiEnDeviceCategory; } public function setEtsiEnDeviceEmissionsClass($etsiEnDeviceEmissionsClass) { $this->etsiEnDeviceEmissionsClass = $etsiEnDeviceEmissionsClass; } public function getEtsiEnDeviceEmissionsClass() { return $this->etsiEnDeviceEmissionsClass; } public function setEtsiEnDeviceType($etsiEnDeviceType) { $this->etsiEnDeviceType = $etsiEnDeviceType; } public function getEtsiEnDeviceType() { return $this->etsiEnDeviceType; } public function setEtsiEnTechnologyId($etsiEnTechnologyId) { $this->etsiEnTechnologyId = $etsiEnTechnologyId; } public function getEtsiEnTechnologyId() { return $this->etsiEnTechnologyId; } public function setFccId($fccId) { $this->fccId = $fccId; } public function getFccId() { return $this->fccId; } public function setFccTvbdDeviceType($fccTvbdDeviceType) { $this->fccTvbdDeviceType = $fccTvbdDeviceType; } public function getFccTvbdDeviceType() { return $this->fccTvbdDeviceType; } public function setManufacturerId($manufacturerId) { $this->manufacturerId = $manufacturerId; } public function getManufacturerId() { return $this->manufacturerId; } public function setModelId($modelId) { $this->modelId = $modelId; } public function getModelId() { return $this->modelId; } public function setRulesetIds($rulesetIds) { $this->rulesetIds = $rulesetIds; } public function getRulesetIds() { return $this->rulesetIds; } public function setSerialNumber($serialNumber) { $this->serialNumber = $serialNumber; } public function getSerialNumber() { return $this->serialNumber; } }