<?php

namespace SGCIS\Struct;

use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for DataListRequest Struct
 * @subpackage Structs
 */
class DataListRequest extends ServiceRequestBase
{
    /**
     * The ListType
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var \SGCIS\Array\ArrayOfString
     */
    public $ListType;
    /**
     * Constructor method for DataListRequest
     * @uses DataListRequest::setListType()
     * @param \SGCIS\Array\ArrayOfString $listType
     */
    public function __construct(\SGCIS\Array\ArrayOfString $listType = null)
    {
        $this
            ->setListType($listType);
    }
    /**
     * Get ListType value
     * @return \SGCIS\Array\ArrayOfString|null
     */
    public function getListType()
    {
        return $this->ListType;
    }
    /**
     * Set ListType value
     * @param \SGCIS\Array\ArrayOfString $listType
     * @return \SGCIS\Struct\DataListRequest
     */
    public function setListType(\SGCIS\Array\ArrayOfString $listType = null)
    {
        $this->ListType = $listType;
        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 \SGCIS\Struct\DataListRequest
     */
    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__;
    }
}
