<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for getZapowiedziFakturResponse StructType
 * @subpackage Structs
 */
class GetZapowiedziFakturResponse extends AbstractStructBase
{
    /**
     * The zapowiedzFakturyZipFile
     * Meta information 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
     * @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;
    }
}
