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.
 

97 lines
1.3 KiB

<?php
namespace SparkLib\UPS\Rate;
class CodeType
{
/**
*
* @var string $Code
* @access public
*/
public $Code = null;
/**
*
* @var string $Description
* @access public
*/
public $Description = null;
/**
*
* @var string $Digest
* @access public
*/
public $Digest = null;
/**
*
* @param string $Code
* @param string $Description
* @param string $Digest
* @access public
*/
public function __construct($Code = null, $Description = null, $Digest = null)
{
$this->Code = $Code;
$this->Description = $Description;
$this->Digest = $Digest;
}
/**
*
* @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;
}
/**
*
* @return string
*/
public function getDigest()
{
return $this->Digest;
}
/**
*
* @param string $Digest
*/
public function setDigest($Digest)
{
$this->Digest = $Digest;
}
}