<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

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