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

<?php
namespace SparkLib\UPS\Rate;
class NMFCCommodityType
{
/**
*
* @var string $PrimeCode
* @access public
*/
public $PrimeCode = null;
/**
*
* @var string $SubCode
* @access public
*/
public $SubCode = null;
/**
*
* @param string $PrimeCode
* @param string $SubCode
* @access public
*/
public function __construct($PrimeCode = null, $SubCode = null)
{
$this->PrimeCode = $PrimeCode;
$this->SubCode = $SubCode;
}
/**
*
* @return string
*/
public function getPrimeCode()
{
return $this->PrimeCode;
}
/**
*
* @param string $PrimeCode
*/
public function setPrimeCode($PrimeCode)
{
$this->PrimeCode = $PrimeCode;
}
/**
*
* @return string
*/
public function getSubCode()
{
return $this->SubCode;
}
/**
*
* @param string $SubCode
*/
public function setSubCode($SubCode)
{
$this->SubCode = $SubCode;
}
}