xxxxxxxxxx
namespace GlsApi;
use \WsdlToPhp\PackageBase\AbstractStructBase;
/**
* This class stands for GLSParameters Tracking
* @subpackage Structs
*/
class GLSParameters extends AbstractStructBase
{
/**
* The ParamCode
* @var string
*/
public $ParamCode;
/**
* The ParamValue
* @var string
*/
public $ParamValue;
/**
* Constructor method for GLSParameters
* @uses GLSParameters::setParamCode()
* @uses GLSParameters::setParamValue()
* @param string $paramCode
* @param string $paramValue
*/
public function __construct($paramCode = null, $paramValue = null)
{
$this
->setParamCode($paramCode)
->setParamValue($paramValue);
}
/**
* Get ParamCode value
* @return string|null
*/
public function getParamCode()
{
return $this->ParamCode;
}
/**
* Set ParamCode value
* @param string $paramCode
* @return \GlsApi\GLSParameters
*/
public function setParamCode($paramCode = null)
{
$this->ParamCode = $paramCode;
return $this;
}
/**
* Get ParamValue value
* @return string|null
*/
public function getParamValue()
{
return $this->ParamValue;
}
/**
* Set ParamValue value
* @param string $paramValue
* @return \GlsApi\GLSParameters
*/
public function setParamValue($paramValue = null)
{
$this->ParamValue = $paramValue;
return $this;
}
}
Don't be shy, don't hesitate to contact us for any subject, we'll be glad to help.
This platform is provided to give developpers and non developpers a way to easily consume SOAP Web Services or share their own SOAP Web Services with extra features powered by the platform.
© 2025 Providr.IO