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
1.2 KiB

<?php
namespace SparkLib\UPS\Rate;
class TransactionReferenceType
{
/**
*
* @var string $CustomerContext
* @access public
*/
public $CustomerContext = null;
/**
*
* @var string $TransactionIdentifier
* @access public
*/
public $TransactionIdentifier = null;
/**
*
* @param string $CustomerContext
* @param string $TransactionIdentifier
* @access public
*/
public function __construct($CustomerContext = null, $TransactionIdentifier = null)
{
$this->CustomerContext = $CustomerContext;
$this->TransactionIdentifier = $TransactionIdentifier;
}
/**
*
* @return string
*/
public function getCustomerContext()
{
return $this->CustomerContext;
}
/**
*
* @param string $CustomerContext
*/
public function setCustomerContext($CustomerContext)
{
$this->CustomerContext = $CustomerContext;
}
/**
*
* @return string
*/
public function getTransactionIdentifier()
{
return $this->TransactionIdentifier;
}
/**
*
* @param string $TransactionIdentifier
*/
public function setTransactionIdentifier($TransactionIdentifier)
{
$this->TransactionIdentifier = $TransactionIdentifier;
}
}