<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for updateProfil StructType
 * @subpackage Structs
 */
class UpdateProfil extends AbstractStructBase
{
    /**
     * The profil
     * Meta information extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 1
     * @var ProfilType
     */
    public $profil;
    /**
     * Constructor method for updateProfil
     * @uses UpdateProfil::setProfil()
     * @param ProfilType $profil
     */
    public function __construct(ProfilType $profil = null)
    {
        $this
            -&gt;setProfil($profil);
    }
    /**
     * Get profil value
     * @return ProfilType
     */
    public function getProfil()
    {
        return $this-&gt;profil;
    }
    /**
     * Set profil value
     * @param ProfilType $profil
     * @return UpdateProfil
     */
    public function setProfil(ProfilType $profil = null)
    {
        $this-&gt;profil = $profil;
        return $this;
    }
}
</pre></body></html>