<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for getAttachmentList StructType
 * Meta informations extracted from the WSDL
 * - type: s0:getAttachmentList
 * @subpackage Structs
 */
class GetAttachmentList extends AbstractStructBase
{
    /**
     * The paramGetAttachmentList
     * @var ParamGetAttachmentList
     */
    public $paramGetAttachmentList;
    /**
     * Constructor method for getAttachmentList
     * @uses GetAttachmentList::setParamGetAttachmentList()
     * @param ParamGetAttachmentList $paramGetAttachmentList
     */
    public function __construct(ParamGetAttachmentList $paramGetAttachmentList = null)
    {
        $this
            ->setParamGetAttachmentList($paramGetAttachmentList);
    }
    /**
     * Get paramGetAttachmentList value
     * @return ParamGetAttachmentList|null
     */
    public function getParamGetAttachmentList()
    {
        return $this->paramGetAttachmentList;
    }
    /**
     * Set paramGetAttachmentList value
     * @param ParamGetAttachmentList $paramGetAttachmentList
     * @return GetAttachmentList
     */
    public function setParamGetAttachmentList(ParamGetAttachmentList $paramGetAttachmentList = null)
    {
        $this->paramGetAttachmentList = $paramGetAttachmentList;
        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 GetAttachmentList
     */
    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__;
    }
}
