<?php

namespace GlsApi\Struct;

use \WsdlToPhp\PackageBase\AbstractStructBase;

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