<?php

namespace GLS;

use \WsdlToPhp\PackageBase\AbstractStructBase;

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