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 RequestType
{
/**
*
* @var string $RequestOption
* @access public
*/
public $RequestOption = null;
/**
*
* @var TransactionReferenceType $TransactionReference
* @access public
*/
public $TransactionReference = null;
/**
*
* @param string $RequestOption
* @param TransactionReferenceType $TransactionReference
* @access public
*/
public function __construct($RequestOption = null, $TransactionReference = null)
{
$this->RequestOption = $RequestOption;
$this->TransactionReference = $TransactionReference;
}
/**
*
* @return string
*/
public function getRequestOption()
{
return $this->RequestOption;
}
/**
*
* @param string $RequestOption
*/
public function setRequestOption($RequestOption)
{
$this->RequestOption = $RequestOption;
}
/**
*
* @return TransactionReferenceType
*/
public function getTransactionReference()
{
return $this->TransactionReference;
}
/**
*
* @param TransactionReferenceType $TransactionReference
*/
public function setTransactionReference($TransactionReference)
{
$this->TransactionReference = $TransactionReference;
}
}