<?php

namespace GlsApi\Struct;

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 \GlsApi\Array\CParcelShop2Array
     */
    public $return;
    /**
     * Constructor method for adeParcelShop2_SearchByZipResponse
     * @uses AdeParcelShop2_SearchByZipResponse::setReturn()
     * @param \GlsApi\Array\CParcelShop2Array $return
     */
    public function __construct(\GlsApi\Array\CParcelShop2Array $return = null)
    {
        $this
            ->setReturn($return);
    }
    /**
     * Get return value
     * @return \GlsApi\Array\CParcelShop2Array|null
     */
    public function getReturn()
    {
        return $this->return;
    }
    /**
     * Set return value
     * @param \GlsApi\Array\CParcelShop2Array $return
     * @return \GlsApi\Struct\AdeParcelShop2_SearchByZipResponse
     */
    public function setReturn(\GlsApi\Array\CParcelShop2Array $return = null)
    {
        $this->return = $return;
        return $this;
    }
}
