<?php

namespace GLS;

use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for adeZip_CustomsRequiredResponse Struct
 * Meta information extracted from the WSDL
 * - type: tns:adeZip_CustomsRequiredResponse
 * @subpackage Structs
 */
class AdeZip_CustomsRequiredResponse extends AbstractStructBase
{
    /**
     * The return
     * @var \GLS\CBooleanValue
     */
    public $return;
    /**
     * Constructor method for adeZip_CustomsRequiredResponse
     * @uses AdeZip_CustomsRequiredResponse::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\AdeZip_CustomsRequiredResponse
     */
    public function setReturn(\GLS\CBooleanValue $return = null)
    {
        $this->return = $return;
        return $this;
    }
}
