<?php

namespace GLS;

use \WsdlToPhp\PackageBase\AbstractStructBase;

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