xxxxxxxxxx
namespace GLS;
use \WsdlToPhp\PackageBase\AbstractStructBase;
/**
* This class stands for cServices Struct
* @subpackage Structs
*/
class CServices extends AbstractStructBase
{
/**
* The srv_ade
* Meta information extracted from the WSDL
* - maxOccurs: 1
* - minOccurs: 1
* @var string
*/
public $srv_ade;
/**
* The srv_bool
* Meta information extracted from the WSDL
* - maxOccurs: 1
* - minOccurs: 1
* @var \GLS\CServicesBool
*/
public $srv_bool;
/**
* Constructor method for cServices
* @uses CServices::setSrv_ade()
* @uses CServices::setSrv_bool()
* @param string $srv_ade
* @param \GLS\CServicesBool $srv_bool
*/
public function __construct($srv_ade = null, \GLS\CServicesBool $srv_bool = null)
{
$this
->setSrv_ade($srv_ade)
->setSrv_bool($srv_bool);
}
/**
* Get srv_ade value
* @return string
*/
public function getSrv_ade()
{
return $this->srv_ade;
}
/**
* Set srv_ade value
* @param string $srv_ade
* @return \GLS\CServices
*/
public function setSrv_ade($srv_ade = null)
{
// validation for constraint: string
if (!is_null($srv_ade) && !is_string($srv_ade)) {
throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($srv_ade, true), gettype($srv_ade)), __LINE__);
}
$this->srv_ade = $srv_ade;
return $this;
}
/**
* Get srv_bool value
* @return \GLS\CServicesBool
*/
public function getSrv_bool()
{
return $this->srv_bool;
}
/**
* Set srv_bool value
* @param \GLS\CServicesBool $srv_bool
* @return \GLS\CServices
*/
public function setSrv_bool(\GLS\CServicesBool $srv_bool = null)
{
$this->srv_bool = $srv_bool;
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