<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;?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
            -&gt;setShop($shop);
    }
    /**
     * Get shop value
     * @return ShopEZwrotyType
     */
    public function getShop()
    {
        return $this-&gt;shop;
    }
    /**
     * Set shop value
     * @param ShopEZwrotyType $shop
     * @return CreateShopEZwroty
     */
    public function setShop(ShopEZwrotyType $shop = null)
    {
        $this-&gt;shop = $shop;
        return $this;
    }
}
</pre></body></html>