<?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
            ->setIlosc($ilosc);
    }
    /**
     * Get ilosc value
     * @return int|null
     */
    public function getIlosc()
    {
        return $this->ilosc;
    }
    /**
     * Set ilosc value
     * @param int $ilosc
     * @return GetGuid
     */
    public function setIlosc($ilosc = null)
    {
        $this->ilosc = $ilosc;
        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 GetGuid
     */
    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__;
    }
}
