<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for SearchUsersByPath StructType
 * @subpackage Structs
 */
class SearchUsersByPath extends AbstractStructBase
{
    /**
     * The path
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var string
     */
    public $path;
    /**
     * The returnProperties
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var string
     */
    public $returnProperties;
    /**
     * Constructor method for SearchUsersByPath
     * @uses SearchUsersByPath::setPath()
     * @uses SearchUsersByPath::setReturnProperties()
     * @param string $path
     * @param string $returnProperties
     */
    public function __construct($path = null, $returnProperties = null)
    {
        $this
            ->setPath($path)
            ->setReturnProperties($returnProperties);
    }
    /**
     * Get path value
     * @return string|null
     */
    public function getPath()
    {
        return $this->path;
    }
    /**
     * Set path value
     * @param string $path
     * @return SearchUsersByPath
     */
    public function setPath($path = null)
    {
        // validation for constraint: string
        if (!is_null($path) && !is_string($path)) {
            throw new \InvalidArgumentException(sprintf('Invalid value, please provide a string, "%s" given', gettype($path)), __LINE__);
        }
        $this->path = $path;
        return $this;
    }
    /**
     * Get returnProperties value
     * @return string|null
     */
    public function getReturnProperties()
    {
        return $this->returnProperties;
    }
    /**
     * Set returnProperties value
     * @param string $returnProperties
     * @return SearchUsersByPath
     */
    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 SearchUsersByPath
     */
    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__;
    }
}
