<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for GetProfessions StructType
 * @subpackage Structs
 */
class GetProfessions extends AbstractStructBase
{
    /**
     * The login
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * - nillable: true
     * @var string
     */
    public $login;
    /**
     * The password
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * - nillable: true
     * @var string
     */
    public $password;
    /**
     * The codelangue
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * - nillable: true
     * @var string
     */
    public $codelangue;
    /**
     * Constructor method for GetProfessions
     * @uses GetProfessions::setLogin()
     * @uses GetProfessions::setPassword()
     * @uses GetProfessions::setCodelangue()
     * @param string $login
     * @param string $password
     * @param string $codelangue
     */
    public function __construct($login = null, $password = null, $codelangue = null)
    {
        $this
            ->setLogin($login)
            ->setPassword($password)
            ->setCodelangue($codelangue);
    }
    /**
     * Get login value
     * An additional test has been added (isset) before returning the property value as
     * this property may have been unset before, due to the fact that this property is
     * removable from the request (nillable=true+minOccurs=0)
     * @return string|null
     */
    public function getLogin()
    {
        return isset($this->login) ? $this->login : null;
    }
    /**
     * Set login value
     * This property is removable from request (nillable=true+minOccurs=0), therefore
     * if the value assigned to this property is null, it is removed from this object
     * @param string $login
     * @return GetProfessions
     */
    public function setLogin($login = null)
    {
        // validation for constraint: string
        if (!is_null($login) && !is_string($login)) {
            throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($login, true), gettype($login)), __LINE__);
        }
        if (is_null($login) || (is_array($login) && empty($login))) {
            unset($this->login);
        } else {
            $this->login = $login;
        }
        return $this;
    }
    /**
     * Get password value
     * An additional test has been added (isset) before returning the property value as
     * this property may have been unset before, due to the fact that this property is
     * removable from the request (nillable=true+minOccurs=0)
     * @return string|null
     */
    public function getPassword()
    {
        return isset($this->password) ? $this->password : null;
    }
    /**
     * Set password value
     * This property is removable from request (nillable=true+minOccurs=0), therefore
     * if the value assigned to this property is null, it is removed from this object
     * @param string $password
     * @return GetProfessions
     */
    public function setPassword($password = null)
    {
        // validation for constraint: string
        if (!is_null($password) && !is_string($password)) {
            throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($password, true), gettype($password)), __LINE__);
        }
        if (is_null($password) || (is_array($password) && empty($password))) {
            unset($this->password);
        } else {
            $this->password = $password;
        }
        return $this;
    }
    /**
     * Get codelangue value
     * An additional test has been added (isset) before returning the property value as
     * this property may have been unset before, due to the fact that this property is
     * removable from the request (nillable=true+minOccurs=0)
     * @return string|null
     */
    public function getCodelangue()
    {
        return isset($this->codelangue) ? $this->codelangue : null;
    }
    /**
     * Set codelangue value
     * This property is removable from request (nillable=true+minOccurs=0), therefore
     * if the value assigned to this property is null, it is removed from this object
     * @param string $codelangue
     * @return GetProfessions
     */
    public function setCodelangue($codelangue = null)
    {
        // validation for constraint: string
        if (!is_null($codelangue) && !is_string($codelangue)) {
            throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($codelangue, true), gettype($codelangue)), __LINE__);
        }
        if (is_null($codelangue) || (is_array($codelangue) && empty($codelangue))) {
            unset($this->codelangue);
        } else {
            $this->codelangue = $codelangue;
        }
        return $this;
    }
}
