<?php

namespace GLS;

use \WsdlToPhp\PackageBase\AbstractStructBase;

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