A modest collection of PHP libraries used at SparkFun.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

70 lines
798 B

<?php
namespace SparkLib\UPS\Rate;
class Property
{
/**
*
* @var string $_
* @access public
*/
public $_ = null;
/**
*
* @var string $Key
* @access public
*/
public $Key = null;
/**
*
* @param string $_
* @param string $Key
* @access public
*/
public function __construct($_ = null, $Key = null)
{
$this->_ = $_;
$this->Key = $Key;
}
/**
*
* @return string
*/
public function get_()
{
return $this->_;
}
/**
*
* @param string $_
*/
public function set_($_)
{
$this->_ = $_;
}
/**
*
* @return string
*/
public function getKey()
{
return $this->Key;
}
/**
*
* @param string $Key
*/
public function setKey($Key)
{
$this->Key = $Key;
}
}