<?php

namespace GLS;

use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for adeLoginByLocalizationCodeResponse Struct
 * Meta information extracted from the WSDL
 * - type: tns:adeLoginByLocalizationCodeResponse
 * @subpackage Structs
 */
class AdeLoginByLocalizationCodeResponse extends AbstractStructBase
{
    /**
     * The return
     * @var \GLS\CSession
     */
    public $return;
    /**
     * Constructor method for adeLoginByLocalizationCodeResponse
     * @uses AdeLoginByLocalizationCodeResponse::setReturn()
     * @param \GLS\CSession $return
     */
    public function __construct(\GLS\CSession $return = null)
    {
        $this
            ->setReturn($return);
    }
    /**
     * Get return value
     * @return \GLS\CSession|null
     */
    public function getReturn()
    {
        return $this->return;
    }
    /**
     * Set return value
     * @param \GLS\CSession $return
     * @return \GLS\AdeLoginByLocalizationCodeResponse
     */
    public function setReturn(\GLS\CSession $return = null)
    {
        $this->return = $return;
        return $this;
    }
}
