<?php

namespace SGCIS\Struct;

use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for GetDataListResponse Struct
 * @subpackage Structs
 */
class GetDataListResponse extends AbstractStructBase
{
    /**
     * The GetDataListResult
     * Meta informations extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 0
     * @var \SGCIS\Struct\DataListResponse
     */
    public $GetDataListResult;
    /**
     * Constructor method for GetDataListResponse
     * @uses GetDataListResponse::setGetDataListResult()
     * @param \SGCIS\Struct\DataListResponse $getDataListResult
     */
    public function __construct(\SGCIS\Struct\DataListResponse $getDataListResult = null)
    {
        $this
            ->setGetDataListResult($getDataListResult);
    }
    /**
     * Get GetDataListResult value
     * @return \SGCIS\Struct\DataListResponse|null
     */
    public function getGetDataListResult()
    {
        return $this->GetDataListResult;
    }
    /**
     * Set GetDataListResult value
     * @param \SGCIS\Struct\DataListResponse $getDataListResult
     * @return \SGCIS\Struct\GetDataListResponse
     */
    public function setGetDataListResult(\SGCIS\Struct\DataListResponse $getDataListResult = null)
    {
        $this->GetDataListResult = $getDataListResult;
        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\GetDataListResponse
     */
    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__;
    }
}
