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.
 

43 lines
617 B

<?php
namespace SparkLib\UPS\Rate;
class Errors
{
/**
*
* @var ErrorDetailType $ErrorDetail
* @access public
*/
public $ErrorDetail = null;
/**
*
* @param ErrorDetailType $ErrorDetail
* @access public
*/
public function __construct($ErrorDetail = null)
{
$this->ErrorDetail = $ErrorDetail;
}
/**
*
* @return ErrorDetailType
*/
public function getErrorDetail()
{
return $this->ErrorDetail;
}
/**
*
* @param ErrorDetailType $ErrorDetail
*/
public function setErrorDetail($ErrorDetail)
{
$this->ErrorDetail = $ErrorDetail;
}
}