<?php

namespace SGCIS\Struct;

use \WsdlToPhp\PackageBase\AbstractStructBase;

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