<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for GetVersionsResponse StructType
 * @subpackage Structs
 */
class GetVersionsResponse extends AbstractStructBase
{
    /**
     * The GetVersionsResult
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * - nillable: true
     * @var ServiceVersionResult
     */
    public $GetVersionsResult;
    /**
     * Constructor method for GetVersionsResponse
     * @uses GetVersionsResponse::setGetVersionsResult()
     * @param ServiceVersionResult $getVersionsResult
     */
    public function __construct(ServiceVersionResult $getVersionsResult = null)
    {
        $this
            ->setGetVersionsResult($getVersionsResult);
    }
    /**
     * Get GetVersionsResult 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 ServiceVersionResult|null
     */
    public function getGetVersionsResult()
    {
        return isset($this->GetVersionsResult) ? $this->GetVersionsResult : null;
    }
    /**
     * Set GetVersionsResult 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
     * @param ServiceVersionResult $getVersionsResult
     * @return GetVersionsResponse
     */
    public function setGetVersionsResult(ServiceVersionResult $getVersionsResult = null)
    {
        if (is_null($getVersionsResult) || (is_array($getVersionsResult) && empty($getVersionsResult))) {
            unset($this->GetVersionsResult);
        } else {
            $this->GetVersionsResult = $getVersionsResult;
        }
        return $this;
    }
}
