<?php

namespace GLS;

use \WsdlToPhp\PackageBase\AbstractStructBase;

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