<?php
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;
    }
}
