<?php

namespace GlsApi\Struct;

use \WsdlToPhp\PackageBase\AbstractStructBase;

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