xxxxxxxxxx
namespace GlsApi\Struct;
use \WsdlToPhp\PackageBase\AbstractStructBase;
/**
* This class stands for NewOperation Struct
* @subpackage Structs
*/
class NewOperation extends AbstractStructBase
{
/**
* The in
* @var string
*/
public $in;
/**
* Constructor method for NewOperation
* @uses NewOperation::setIn()
* @param string $in
*/
public function __construct($in = null)
{
$this
->setIn($in);
}
/**
* Get in value
* @return string|null
*/
public function getIn()
{
return $this->in;
}
/**
* Set in value
* @param string $in
* @return \GlsApi\Struct\NewOperation
*/
public function setIn($in = null)
{
// validation for constraint: string
if (!is_null($in) && !is_string($in)) {
throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($in, true), gettype($in)), __LINE__);
}
$this->in = $in;
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