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
954 B

<?php
namespace SparkLib\UPS\Ship;
class UnitOfMeasurementType
{
/**
*
* @var string $Code
* @access public
*/
public $Code = null;
/**
*
* @var string $Description
* @access public
*/
public $Description = null;
/**
*
* @param string $Code
* @param string $Description
* @access public
*/
public function __construct($Code = null, $Description = null)
{
$this->Code = $Code;
$this->Description = $Description;
}
/**
*
* @return string
*/
public function getCode()
{
return $this->Code;
}
/**
*
* @param string $Code
*/
public function setCode($Code)
{
$this->Code = $Code;
}
/**
*
* @return string
*/
public function getDescription()
{
return $this->Description;
}
/**
*
* @param string $Description
*/
public function setDescription($Description)
{
$this->Description = $Description;
}
}