<?php

namespace GLS;

use \WsdlToPhp\PackageBase\AbstractStructBase;

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