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.
 

97 lines
1.6 KiB

<?php
namespace SparkLib\UPS\Rate;
class LocationType
{
/**
*
* @var string $LocationElementName
* @access public
*/
public $LocationElementName = null;
/**
*
* @var string $XPathOfElement
* @access public
*/
public $XPathOfElement = null;
/**
*
* @var string $OriginalValue
* @access public
*/
public $OriginalValue = null;
/**
*
* @param string $LocationElementName
* @param string $XPathOfElement
* @param string $OriginalValue
* @access public
*/
public function __construct($LocationElementName = null, $XPathOfElement = null, $OriginalValue = null)
{
$this->LocationElementName = $LocationElementName;
$this->XPathOfElement = $XPathOfElement;
$this->OriginalValue = $OriginalValue;
}
/**
*
* @return string
*/
public function getLocationElementName()
{
return $this->LocationElementName;
}
/**
*
* @param string $LocationElementName
*/
public function setLocationElementName($LocationElementName)
{
$this->LocationElementName = $LocationElementName;
}
/**
*
* @return string
*/
public function getXPathOfElement()
{
return $this->XPathOfElement;
}
/**
*
* @param string $XPathOfElement
*/
public function setXPathOfElement($XPathOfElement)
{
$this->XPathOfElement = $XPathOfElement;
}
/**
*
* @return string
*/
public function getOriginalValue()
{
return $this->OriginalValue;
}
/**
*
* @param string $OriginalValue
*/
public function setOriginalValue($OriginalValue)
{
$this->OriginalValue = $OriginalValue;
}
}