EVOLUTION-MANAGER
Edit File: GoogleChromeManagementV1NetworkStatusReport.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. */ namespace Google\Service\ChromeManagement; class GoogleChromeManagementV1NetworkStatusReport extends \Google\Model { /** * @var string */ public $connectionState; /** * @var string */ public $connectionType; /** * @var bool */ public $encryptionOn; /** * @var string */ public $gatewayIpAddress; /** * @var string */ public $guid; /** * @var string */ public $lanIpAddress; /** * @var string */ public $receivingBitRateMbps; /** * @var string */ public $reportTime; /** * @var string */ public $sampleFrequency; /** * @var int */ public $signalStrengthDbm; /** * @var string */ public $transmissionBitRateMbps; /** * @var int */ public $transmissionPowerDbm; /** * @var string */ public $wifiLinkQuality; /** * @var bool */ public $wifiPowerManagementEnabled; /** * @param string */ public function setConnectionState($connectionState) { $this->connectionState = $connectionState; } /** * @return string */ public function getConnectionState() { return $this->connectionState; } /** * @param string */ public function setConnectionType($connectionType) { $this->connectionType = $connectionType; } /** * @return string */ public function getConnectionType() { return $this->connectionType; } /** * @param bool */ public function setEncryptionOn($encryptionOn) { $this->encryptionOn = $encryptionOn; } /** * @return bool */ public function getEncryptionOn() { return $this->encryptionOn; } /** * @param string */ public function setGatewayIpAddress($gatewayIpAddress) { $this->gatewayIpAddress = $gatewayIpAddress; } /** * @return string */ public function getGatewayIpAddress() { return $this->gatewayIpAddress; } /** * @param string */ public function setGuid($guid) { $this->guid = $guid; } /** * @return string */ public function getGuid() { return $this->guid; } /** * @param string */ public function setLanIpAddress($lanIpAddress) { $this->lanIpAddress = $lanIpAddress; } /** * @return string */ public function getLanIpAddress() { return $this->lanIpAddress; } /** * @param string */ public function setReceivingBitRateMbps($receivingBitRateMbps) { $this->receivingBitRateMbps = $receivingBitRateMbps; } /** * @return string */ public function getReceivingBitRateMbps() { return $this->receivingBitRateMbps; } /** * @param string */ public function setReportTime($reportTime) { $this->reportTime = $reportTime; } /** * @return string */ public function getReportTime() { return $this->reportTime; } /** * @param string */ public function setSampleFrequency($sampleFrequency) { $this->sampleFrequency = $sampleFrequency; } /** * @return string */ public function getSampleFrequency() { return $this->sampleFrequency; } /** * @param int */ public function setSignalStrengthDbm($signalStrengthDbm) { $this->signalStrengthDbm = $signalStrengthDbm; } /** * @return int */ public function getSignalStrengthDbm() { return $this->signalStrengthDbm; } /** * @param string */ public function setTransmissionBitRateMbps($transmissionBitRateMbps) { $this->transmissionBitRateMbps = $transmissionBitRateMbps; } /** * @return string */ public function getTransmissionBitRateMbps() { return $this->transmissionBitRateMbps; } /** * @param int */ public function setTransmissionPowerDbm($transmissionPowerDbm) { $this->transmissionPowerDbm = $transmissionPowerDbm; } /** * @return int */ public function getTransmissionPowerDbm() { return $this->transmissionPowerDbm; } /** * @param string */ public function setWifiLinkQuality($wifiLinkQuality) { $this->wifiLinkQuality = $wifiLinkQuality; } /** * @return string */ public function getWifiLinkQuality() { return $this->wifiLinkQuality; } /** * @param bool */ public function setWifiPowerManagementEnabled($wifiPowerManagementEnabled) { $this->wifiPowerManagementEnabled = $wifiPowerManagementEnabled; } /** * @return bool */ public function getWifiPowerManagementEnabled() { return $this->wifiPowerManagementEnabled; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleChromeManagementV1NetworkStatusReport::class, 'Google_Service_ChromeManagement_GoogleChromeManagementV1NetworkStatusReport');