<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

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