<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 getGuid StructType
 * @subpackage Structs
 */
class GetGuid extends AbstractStructBase
{
    /**
     * The ilosc
     * @var int
     */
    public $ilosc;
    /**
     * Constructor method for getGuid
     * @uses GetGuid::setIlosc()
     * @param int $ilosc
     */
    public function __construct($ilosc = null)
    {
        $this
            -&gt;setIlosc($ilosc);
    }
    /**
     * Get ilosc value
     * @return int|null
     */
    public function getIlosc()
    {
        return $this-&gt;ilosc;
    }
    /**
     * Set ilosc value
     * @param int $ilosc
     * @return GetGuid
     */
    public function setIlosc($ilosc = null)
    {
        // validation for constraint: int
        if (!is_null($ilosc) &amp;&amp; !(is_int($ilosc) || ctype_digit($ilosc))) {
            throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide an integer value, %s given', var_export($ilosc, true), gettype($ilosc)), __LINE__);
        }
        $this-&gt;ilosc = $ilosc;
        return $this;
    }
}
</pre></body></html>