<?php

namespace GLS;

use \WsdlToPhp\PackageBase\AbstractStructBase;

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