<?php

namespace GlsApi\Struct;

use \WsdlToPhp\PackageBase\AbstractStructBase;

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