<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for GetUsersByUserNumber StructType
 * @subpackage Structs
 */
class GetUsersByUserNumber extends AbstractStructBase
{
    /**
     * The usrNumber
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var string
     */
    public $usrNumber;
    /**
     * The returnProperties
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var string
     */
    public $returnProperties;
    /**
     * Constructor method for GetUsersByUserNumber
     * @uses GetUsersByUserNumber::setUsrNumber()
     * @uses GetUsersByUserNumber::setReturnProperties()
     * @param string $usrNumber
     * @param string $returnProperties
     */
    public function __construct($usrNumber = null, $returnProperties = null)
    {
        $this
            ->setUsrNumber($usrNumber)
            ->setReturnProperties($returnProperties);
    }
    /**
     * Get usrNumber value
     * @return string|null
     */
    public function getUsrNumber()
    {
        return $this->usrNumber;
    }
    /**
     * Set usrNumber value
     * @param string $usrNumber
     * @return GetUsersByUserNumber
     */
    public function setUsrNumber($usrNumber = null)
    {
        // validation for constraint: string
        if (!is_null($usrNumber) && !is_string($usrNumber)) {
            throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($usrNumber)), __LINE__);
        }
        $this->usrNumber = $usrNumber;
        return $this;
    }
    /**
     * Get returnProperties value
     * @return string|null
     */
    public function getReturnProperties()
    {
        return $this->returnProperties;
    }
    /**
     * Set returnProperties value
     * @param string $returnProperties
     * @return GetUsersByUserNumber
     */
    public function setReturnProperties($returnProperties = null)
    {
        // validation for constraint: string
        if (!is_null($returnProperties) && !is_string($returnProperties)) {
            throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($returnProperties)), __LINE__);
        }
        $this->returnProperties = $returnProperties;
        return $this;
    }
    /**
     * Method called when an object has been exported with var_export() functions
     * It allows to return an object instantiated with the values
     * @see AbstractStructBase::__set_state()
     * @uses AbstractStructBase::__set_state()
     * @param array $array the exported values
     * @return GetUsersByUserNumber
     */
    public static function __set_state(array $array)
    {
        return parent::__set_state($array);
    }
    /**
     * Method returning the class name
     * @return string __CLASS__
     */
    public function __toString()
    {
        return __CLASS__;
    }
}
