JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "NetworkInterface.php"
Full Path: /home/palsarh/web/palsarh.in/public_html/vendor/google/apiclient-services/src/NetworkManagement/NetworkInterface.php
File size: 2.7 KB
MIME-type: text/x-php
Charset: utf-8
<?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\NetworkManagement;
class NetworkInterface extends \Google\Model
{
/**
* @var string
*/
public $adapterDescription;
/**
* @var string
*/
public $cidr;
/**
* @var string
*/
public $interfaceName;
/**
* @var string
*/
public $ipAddress;
/**
* @var string
*/
public $macAddress;
/**
* @var string
*/
public $speed;
/**
* @var string
*/
public $vlanId;
/**
* @param string
*/
public function setAdapterDescription($adapterDescription)
{
$this->adapterDescription = $adapterDescription;
}
/**
* @return string
*/
public function getAdapterDescription()
{
return $this->adapterDescription;
}
/**
* @param string
*/
public function setCidr($cidr)
{
$this->cidr = $cidr;
}
/**
* @return string
*/
public function getCidr()
{
return $this->cidr;
}
/**
* @param string
*/
public function setInterfaceName($interfaceName)
{
$this->interfaceName = $interfaceName;
}
/**
* @return string
*/
public function getInterfaceName()
{
return $this->interfaceName;
}
/**
* @param string
*/
public function setIpAddress($ipAddress)
{
$this->ipAddress = $ipAddress;
}
/**
* @return string
*/
public function getIpAddress()
{
return $this->ipAddress;
}
/**
* @param string
*/
public function setMacAddress($macAddress)
{
$this->macAddress = $macAddress;
}
/**
* @return string
*/
public function getMacAddress()
{
return $this->macAddress;
}
/**
* @param string
*/
public function setSpeed($speed)
{
$this->speed = $speed;
}
/**
* @return string
*/
public function getSpeed()
{
return $this->speed;
}
/**
* @param string
*/
public function setVlanId($vlanId)
{
$this->vlanId = $vlanId;
}
/**
* @return string
*/
public function getVlanId()
{
return $this->vlanId;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(NetworkInterface::class, 'Google_Service_NetworkManagement_NetworkInterface');