<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 helloResponse StructType
 * @subpackage Structs
 */
class HelloResponse extends AbstractStructBase
{
    /**
     * The out
     * @var string
     */
    public $out;
    /**
     * Constructor method for helloResponse
     * @uses HelloResponse::setOut()
     * @param string $out
     */
    public function __construct($out = null)
    {
        $this
            -&gt;setOut($out);
    }
    /**
     * Get out value
     * @return string|null
     */
    public function getOut()
    {
        return $this-&gt;out;
    }
    /**
     * Set out value
     * @param string $out
     * @return HelloResponse
     */
    public function setOut($out = null)
    {
        // validation for constraint: string
        if (!is_null($out) &amp;&amp; !is_string($out)) {
            throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($out, true), gettype($out)), __LINE__);
        }
        $this-&gt;out = $out;
        return $this;
    }
}
</pre></body></html>