xxxxxxxxxx
use \WsdlToPhp\PackageBase\AbstractStructBase;
/**
* This class stands for createProfil StructType
* @subpackage Structs
*/
class CreateProfil extends AbstractStructBase
{
/**
* The profil
* Meta information extracted from the WSDL
* - maxOccurs: 1
* - minOccurs: 1
* @var ProfilType
*/
public $profil;
/**
* Constructor method for createProfil
* @uses CreateProfil::setProfil()
* @param ProfilType $profil
*/
public function __construct(ProfilType $profil = null)
{
$this
->setProfil($profil);
}
/**
* Get profil value
* @return ProfilType
*/
public function getProfil()
{
return $this->profil;
}
/**
* Set profil value
* @param ProfilType $profil
* @return CreateProfil
*/
public function setProfil(ProfilType $profil = null)
{
$this->profil = $profil;
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