<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;?php

namespace tk_;

/**
 * Class which returns the class map definition
 * @package
 */
class ClassMap
{
    /**
     * Returns the mapping between the WSDL Structs and generated Structs' classes
     * This array is sent to the \SoapClient when calling the WS
     * @return string[]
     */
    final public static function get()
    {
        return array(
            'TStoreStockType' =&gt; '\\tk_\\StructType\\TStoreStockType',
            'TSize' =&gt; '\\tk_\\StructType\\TSize',
            'TStoreSOH' =&gt; '\\tk_\\StructType\\TStoreSOH',
            'TStockType' =&gt; '\\tk_\\StructType\\TStockType',
            'TStockAvailableType' =&gt; '\\tk_\\StructType\\TStockAvailableType',
            'TCustomer' =&gt; '\\tk_\\StructType\\TCustomer',
            'TCustomerResult' =&gt; '\\tk_\\StructType\\TCustomerResult',
            'TStockSaleType' =&gt; '\\tk_\\StructType\\TStockSaleType',
            'TTender' =&gt; '\\tk_\\StructType\\TTender',
            'TInvoiceResult' =&gt; '\\tk_\\StructType\\TInvoiceResult',
            'TOrderResult' =&gt; '\\tk_\\StructType\\TOrderResult',
            'TGiftCardType' =&gt; '\\tk_\\StructType\\TGiftCardType',
            'TGiftCardAuditType' =&gt; '\\tk_\\StructType\\TGiftCardAuditType',
            'TGiftCardAuditDocument' =&gt; '\\tk_\\StructType\\TGiftCardAuditDocument',
            'TTenderTypes' =&gt; '\\tk_\\StructType\\TTenderTypes',
        );
    }
}
</pre></body></html>