<?php
use \WsdlToPhp\PackageBase\AbstractStructBase;

/**
 * This class stands for createShopEZwroty StructType
 * @subpackage Structs
 */
class CreateShopEZwroty extends AbstractStructBase
{
    /**
     * The shop
     * Meta information extracted from the WSDL
     * - maxOccurs: 1
     * - minOccurs: 1
     * @var ShopEZwrotyType
     */
    public $shop;
    /**
     * Constructor method for createShopEZwroty
     * @uses CreateShopEZwroty::setShop()
     * @param ShopEZwrotyType $shop
     */
    public function __construct(ShopEZwrotyType $shop = null)
    {
        $this
            ->setShop($shop);
    }
    /**
     * Get shop value
     * @return ShopEZwrotyType
     */
    public function getShop()
    {
        return $this->shop;
    }
    /**
     * Set shop value
     * @param ShopEZwrotyType $shop
     * @return CreateShopEZwroty
     */
    public function setShop(ShopEZwrotyType $shop = null)
    {
        $this->shop = $shop;
        return $this;
    }
}
