<?php

namespace GlsApi\Struct;

use \WsdlToPhp\PackageBase\AbstractStructBase;

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