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.
 

67 lines
1.5 KiB

<?php
namespace SparkLib\UPS\StreetAddressValidate;
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
* @return \SparkLib\UPS\StreetAddressValidate\RequestType
*/
public function setRequestOption($RequestOption)
{
$this->RequestOption = $RequestOption;
return $this;
}
/**
* @return TransactionReferenceType
*/
public function getTransactionReference()
{
return $this->TransactionReference;
}
/**
* @param TransactionReferenceType $TransactionReference
* @return \SparkLib\UPS\StreetAddressValidate\RequestType
*/
public function setTransactionReference($TransactionReference)
{
$this->TransactionReference = $TransactionReference;
return $this;
}
}