xxxxxxxxxx
namespace GLS;
use \WsdlToPhp\PackageBase\AbstractStructBase;
/**
* This class stands for adePreparingBox_Insert Struct
* Meta information extracted from the WSDL
* - type: tns:adePreparingBox_Insert
* @subpackage Structs
*/
class AdePreparingBox_Insert extends AbstractStructBase
{
/**
* The session
* @var string
*/
public $session;
/**
* The consign_prep_data
* @var \GLS\CConsign
*/
public $consign_prep_data;
/**
* Constructor method for adePreparingBox_Insert
* @uses AdePreparingBox_Insert::setSession()
* @uses AdePreparingBox_Insert::setConsign_prep_data()
* @param string $session
* @param \GLS\CConsign $consign_prep_data
*/
public function __construct($session = null, \GLS\CConsign $consign_prep_data = null)
{
$this
->setSession($session)
->setConsign_prep_data($consign_prep_data);
}
/**
* Get session value
* @return string|null
*/
public function getSession()
{
return $this->session;
}
/**
* Set session value
* @param string $session
* @return \GLS\AdePreparingBox_Insert
*/
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 consign_prep_data value
* @return \GLS\CConsign|null
*/
public function getConsign_prep_data()
{
return $this->consign_prep_data;
}
/**
* Set consign_prep_data value
* @param \GLS\CConsign $consign_prep_data
* @return \GLS\AdePreparingBox_Insert
*/
public function setConsign_prep_data(\GLS\CConsign $consign_prep_data = null)
{
$this->consign_prep_data = $consign_prep_data;
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