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

<?php
namespace SparkLib\UPS\Rate;
class DeliveryConfirmationType
{
/**
*
* @var string $DCISType
* @access public
*/
public $DCISType = null;
/**
*
* @param string $DCISType
* @access public
*/
public function __construct($DCISType = null)
{
$this->DCISType = $DCISType;
}
/**
*
* @return string
*/
public function getDCISType()
{
return $this->DCISType;
}
/**
*
* @param string $DCISType
*/
public function setDCISType($DCISType)
{
$this->DCISType = $DCISType;
}
}