<?php

namespace GLS;

use \WsdlToPhp\PackageBase\AbstractStructBase;

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