xxxxxxxxxx
namespace GLS;
use \WsdlToPhp\PackageBase\AbstractStructBase;
/**
* This class stands for adePreparingBox_GetConsignLabelsExt Struct
* Meta information extracted from the WSDL
* - type: tns:adePreparingBox_GetConsignLabelsExt
* @subpackage Structs
*/
class AdePreparingBox_GetConsignLabelsExt extends AbstractStructBase
{
/**
* The session
* @var string
*/
public $session;
/**
* The id
* @var int
*/
public $id;
/**
* The mode
* @var string
*/
public $mode;
/**
* Constructor method for adePreparingBox_GetConsignLabelsExt
* @uses AdePreparingBox_GetConsignLabelsExt::setSession()
* @uses AdePreparingBox_GetConsignLabelsExt::setId()
* @uses AdePreparingBox_GetConsignLabelsExt::setMode()
* @param string $session
* @param int $id
* @param string $mode
*/
public function __construct($session = null, $id = null, $mode = null)
{
$this
->setSession($session)
->setId($id)
->setMode($mode);
}
/**
* Get session value
* @return string|null
*/
public function getSession()
{
return $this->session;
}
/**
* Set session value
* @param string $session
* @return \GLS\AdePreparingBox_GetConsignLabelsExt
*/
public function setSession($session = null)
{
// validation for constraint: string
if (!is_null($session) && !is_string($session)) {
throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($session, true), gettype($session)), __LINE__);
}
$this->session = $session;
return $this;
}
/**
* Get id value
* @return int|null
*/
public function getId()
{
return $this->id;
}
/**
* Set id value
* @param int $id
* @return \GLS\AdePreparingBox_GetConsignLabelsExt
*/
public function setId($id = null)
{
// validation for constraint: int
if (!is_null($id) && !(is_int($id) || ctype_digit($id))) {
throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide an integer value, %s given', var_export($id, true), gettype($id)), __LINE__);
}
$this->id = $id;
return $this;
}
/**
* Get mode value
* @return string|null
*/
public function getMode()
{
return $this->mode;
}
/**
* Set mode value
* @param string $mode
* @return \GLS\AdePreparingBox_GetConsignLabelsExt
*/
public function setMode($mode = null)
{
// validation for constraint: string
if (!is_null($mode) && !is_string($mode)) {
throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($mode, true), gettype($mode)), __LINE__);
}
$this->mode = $mode;
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