<?php

namespace GLS;

use \WsdlToPhp\PackageBase\AbstractStructBase;

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