<?php

namespace GLS;

use \WsdlToPhp\PackageBase\AbstractStructBase;

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