<?php

namespace GlsApi\Struct;

use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for adePfc_GetDictionaryResponse Struct
 * Meta information extracted from the WSDL
 * - type: tns:adePfc_GetDictionaryResponse
 * @subpackage Structs
 */
class AdePfc_GetDictionaryResponse extends AbstractStructBase
{
    /**
     * The return
     * @var \GlsApi\Array\CStringArray
     */
    public $return;
    /**
     * Constructor method for adePfc_GetDictionaryResponse
     * @uses AdePfc_GetDictionaryResponse::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\AdePfc_GetDictionaryResponse
     */
    public function setReturn(\GlsApi\Array\CStringArray $return = null)
    {
        $this->return = $return;
        return $this;
    }
}
