<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for getReklamacjeResponse StructType
 * @subpackage Structs
 */
class GetReklamacjeResponse extends AbstractStructBase
{
    /**
     * The reklamacja
     * Meta information extracted from the WSDL
     * - maxOccurs: unbounded
     * - minOccurs: 0
     * @var ReklamacjaRozpatrzonaType[]
     */
    public $reklamacja;
    /**
     * Constructor method for getReklamacjeResponse
     * @uses GetReklamacjeResponse::setReklamacja()
     * @param ReklamacjaRozpatrzonaType[] $reklamacja
     */
    public function __construct(array $reklamacja = array())
    {
        $this
            ->setReklamacja($reklamacja);
    }
    /**
     * Get reklamacja value
     * @return ReklamacjaRozpatrzonaType[]|null
     */
    public function getReklamacja()
    {
        return $this->reklamacja;
    }
    /**
     * Set reklamacja value
     * @param ReklamacjaRozpatrzonaType[] $reklamacja
     * @return GetReklamacjeResponse
     */
    public function setReklamacja(array $reklamacja = array())
    {
        $this->reklamacja = $reklamacja;
        return $this;
    }
    /**
     * Add item to reklamacja value
     * @throws \InvalidArgumentException
     * @param ReklamacjaRozpatrzonaType $item
     * @return GetReklamacjeResponse
     */
    public function addToReklamacja(ReklamacjaRozpatrzonaType $item)
    {
        $this->reklamacja[] = $item;
        return $this;
    }
}
