<?php

namespace GLS;

use \WsdlToPhp\PackageBase\AbstractStructBase;

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