<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 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
            -&gt;setUsrNumber($usrNumber)
            -&gt;setReturnProperties($returnProperties);
    }
    /**
     * Get usrNumber value
     * @return string|null
     */
    public function getUsrNumber()
    {
        return $this-&gt;usrNumber;
    }
    /**
     * Set usrNumber value
     * @param string $usrNumber
     * @return GetUsersByUserNumber
     */
    public function setUsrNumber($usrNumber = null)
    {
        // validation for constraint: string
        if (!is_null($usrNumber) &amp;&amp; !is_string($usrNumber)) {
            throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($usrNumber)), __LINE__);
        }
        $this-&gt;usrNumber = $usrNumber;
        return $this;
    }
    /**
     * Get returnProperties value
     * @return string|null
     */
    public function getReturnProperties()
    {
        return $this-&gt;returnProperties;
    }
    /**
     * Set returnProperties value
     * @param string $returnProperties
     * @return GetUsersByUserNumber
     */
    public function setReturnProperties($returnProperties = null)
    {
        // validation for constraint: string
        if (!is_null($returnProperties) &amp;&amp; !is_string($returnProperties)) {
            throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($returnProperties)), __LINE__);
        }
        $this-&gt;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__;
    }
}
</pre></body></html>