<?php

namespace GLS;

use \WsdlToPhp\PackageBase\AbstractStructBase;

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