<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for getZapowiedziFakturResponse StructType
 * @subpackage Structs
 */
class GetZapowiedziFakturResponse extends AbstractStructBase
{
    /**
     * The zapowiedzFakturyZipFile
     * Meta informations extracted from the WSDL
     * - maxOccurs: unbounded
     * - minOccurs: 0
     * @var string[]
     */
    public $zapowiedzFakturyZipFile;
    /**
     * Constructor method for getZapowiedziFakturResponse
     * @uses GetZapowiedziFakturResponse::setZapowiedzFakturyZipFile()
     * @param string[] $zapowiedzFakturyZipFile
     */
    public function __construct(array $zapowiedzFakturyZipFile = array())
    {
        $this
            ->setZapowiedzFakturyZipFile($zapowiedzFakturyZipFile);
    }
    /**
     * Get zapowiedzFakturyZipFile value
     * @return string[]|null
     */
    public function getZapowiedzFakturyZipFile()
    {
        return $this->zapowiedzFakturyZipFile;
    }
    /**
     * Set zapowiedzFakturyZipFile value
     * @throws \InvalidArgumentException
     * @param string[] $zapowiedzFakturyZipFile
     * @return GetZapowiedziFakturResponse
     */
    public function setZapowiedzFakturyZipFile(array $zapowiedzFakturyZipFile = array())
    {
        $this->zapowiedzFakturyZipFile = $zapowiedzFakturyZipFile;
        return $this;
    }
    /**
     * Add item to zapowiedzFakturyZipFile value
     * @throws \InvalidArgumentException
     * @param string $item
     * @return GetZapowiedziFakturResponse
     */
    public function addToZapowiedzFakturyZipFile($item)
    {
        $this->zapowiedzFakturyZipFile[] = $item;
        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 GetZapowiedziFakturResponse
     */
    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__;
    }
}
