<?php

namespace Easy\EasyArray;

use \WsdlToPhp\PackageBase\AbstractStructArrayBase;

/**
 * This class stands for ArrayOfClsGetVoucherTracking_StationResp2 EasyArray
 * Meta information extracted from the WSDL
 * - nillable: true
 * - type: tns:ArrayOfClsGetVoucherTracking_StationResp2
 * @package Easy
 * @subpackage Arrays
 */
class EasyArrayOfClsGetVoucherTracking_StationResp2 extends AbstractStructArrayBase
{
    /**
     * The ClsGetVoucherTracking_StationResp2
     * Meta information extracted from the WSDL
     * - maxOccurs: unbounded
     * - minOccurs: 0
     * - nillable: true
     * @var \Easy\EasyStruct\EasyClsGetVoucherTracking_StationResp2[]
     */
    public $ClsGetVoucherTracking_StationResp2;
    /**
     * Constructor method for ArrayOfClsGetVoucherTracking_StationResp2
     * @uses EasyArrayOfClsGetVoucherTracking_StationResp2::setClsGetVoucherTracking_StationResp2()
     * @param \Easy\EasyStruct\EasyClsGetVoucherTracking_StationResp2[] $clsGetVoucherTracking_StationResp2
     */
    public function __construct(array $clsGetVoucherTracking_StationResp2 = array())
    {
        $this
            ->setClsGetVoucherTracking_StationResp2($clsGetVoucherTracking_StationResp2);
    }
    /**
     * Get ClsGetVoucherTracking_StationResp2 value
     * An additional test has been added (isset) before returning the property value as
     * this property may have been unset before, due to the fact that this property is
     * removable from the request (nillable=true+minOccurs=0)
     * @return \Easy\EasyStruct\EasyClsGetVoucherTracking_StationResp2[]|null
     */
    public function getClsGetVoucherTracking_StationResp2()
    {
        return isset($this->ClsGetVoucherTracking_StationResp2) ? $this->ClsGetVoucherTracking_StationResp2 : null;
    }
    /**
     * This method is responsible for validating the values passed to the setClsGetVoucherTracking_StationResp2 method
     * This method is willingly generated in order to preserve the one-line inline validation within the setClsGetVoucherTracking_StationResp2 method
     * @param array $values
     * @return string A non-empty message if the values does not match the validation rules
     */
    public static function validateClsGetVoucherTracking_StationResp2ForArrayConstraintsFromSetClsGetVoucherTracking_StationResp2(array $values = array())
    {
        $message = '';
        $invalidValues = [];
        foreach ($values as $arrayOfClsGetVoucherTracking_StationResp2ClsGetVoucherTracking_StationResp2Item) {
            // validation for constraint: itemType
            if (!$arrayOfClsGetVoucherTracking_StationResp2ClsGetVoucherTracking_StationResp2Item instanceof \Easy\EasyStruct\EasyClsGetVoucherTracking_StationResp2) {
                $invalidValues[] = is_object($arrayOfClsGetVoucherTracking_StationResp2ClsGetVoucherTracking_StationResp2Item) ? get_class($arrayOfClsGetVoucherTracking_StationResp2ClsGetVoucherTracking_StationResp2Item) : sprintf('%s(%s)', gettype($arrayOfClsGetVoucherTracking_StationResp2ClsGetVoucherTracking_StationResp2Item), var_export($arrayOfClsGetVoucherTracking_StationResp2ClsGetVoucherTracking_StationResp2Item, true));
            }
        }
        if (!empty($invalidValues)) {
            $message = sprintf('The ClsGetVoucherTracking_StationResp2 property can only contain items of type \Easy\EasyStruct\EasyClsGetVoucherTracking_StationResp2, %s given', is_object($invalidValues) ? get_class($invalidValues) : (is_array($invalidValues) ? implode(', ', $invalidValues) : gettype($invalidValues)));
        }
        unset($invalidValues);
        return $message;
    }
    /**
     * Set ClsGetVoucherTracking_StationResp2 value
     * This property is removable from request (nillable=true+minOccurs=0), therefore
     * if the value assigned to this property is null, it is removed from this object
     * @throws \InvalidArgumentException
     * @param \Easy\EasyStruct\EasyClsGetVoucherTracking_StationResp2[] $clsGetVoucherTracking_StationResp2
     * @return \Easy\EasyArray\EasyArrayOfClsGetVoucherTracking_StationResp2
     */
    public function setClsGetVoucherTracking_StationResp2(array $clsGetVoucherTracking_StationResp2 = array())
    {
        // validation for constraint: array
        if ('' !== ($clsGetVoucherTracking_StationResp2ArrayErrorMessage = self::validateClsGetVoucherTracking_StationResp2ForArrayConstraintsFromSetClsGetVoucherTracking_StationResp2($clsGetVoucherTracking_StationResp2))) {
            throw new \InvalidArgumentException($clsGetVoucherTracking_StationResp2ArrayErrorMessage, __LINE__);
        }
        if (is_null($clsGetVoucherTracking_StationResp2) || (is_array($clsGetVoucherTracking_StationResp2) && empty($clsGetVoucherTracking_StationResp2))) {
            unset($this->ClsGetVoucherTracking_StationResp2);
        } else {
            $this->ClsGetVoucherTracking_StationResp2 = $clsGetVoucherTracking_StationResp2;
        }
        return $this;
    }
    /**
     * Add item to ClsGetVoucherTracking_StationResp2 value
     * @throws \InvalidArgumentException
     * @param \Easy\EasyStruct\EasyClsGetVoucherTracking_StationResp2 $item
     * @return \Easy\EasyArray\EasyArrayOfClsGetVoucherTracking_StationResp2
     */
    public function addToClsGetVoucherTracking_StationResp2(\Easy\EasyStruct\EasyClsGetVoucherTracking_StationResp2 $item)
    {
        // validation for constraint: itemType
        if (!$item instanceof \Easy\EasyStruct\EasyClsGetVoucherTracking_StationResp2) {
            throw new \InvalidArgumentException(sprintf('The ClsGetVoucherTracking_StationResp2 property can only contain items of type \Easy\EasyStruct\EasyClsGetVoucherTracking_StationResp2, %s given', is_object($item) ? get_class($item) : (is_array($item) ? implode(', ', $item) : gettype($item))), __LINE__);
        }
        $this->ClsGetVoucherTracking_StationResp2[] = $item;
        return $this;
    }
    /**
     * Returns the current element
     * @see AbstractStructArrayBase::current()
     * @return \Easy\EasyStruct\EasyClsGetVoucherTracking_StationResp2|null
     */
    public function current()
    {
        return parent::current();
    }
    /**
     * Returns the indexed element
     * @see AbstractStructArrayBase::item()
     * @param int $index
     * @return \Easy\EasyStruct\EasyClsGetVoucherTracking_StationResp2|null
     */
    public function item($index)
    {
        return parent::item($index);
    }
    /**
     * Returns the first element
     * @see AbstractStructArrayBase::first()
     * @return \Easy\EasyStruct\EasyClsGetVoucherTracking_StationResp2|null
     */
    public function first()
    {
        return parent::first();
    }
    /**
     * Returns the last element
     * @see AbstractStructArrayBase::last()
     * @return \Easy\EasyStruct\EasyClsGetVoucherTracking_StationResp2|null
     */
    public function last()
    {
        return parent::last();
    }
    /**
     * Returns the element at the offset
     * @see AbstractStructArrayBase::offsetGet()
     * @param int $offset
     * @return \Easy\EasyStruct\EasyClsGetVoucherTracking_StationResp2|null
     */
    public function offsetGet($offset)
    {
        return parent::offsetGet($offset);
    }
    /**
     * Returns the attribute name
     * @see AbstractStructArrayBase::getAttributeName()
     * @return string ClsGetVoucherTracking_StationResp2
     */
    public function getAttributeName()
    {
        return 'ClsGetVoucherTracking_StationResp2';
    }
}
