<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;?php
/**
 * 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(
            'ArrayOfanyType' =&gt; '\\ArrayType\\ArrayOfanyType',
            'ArrayOfArrayOfKeyValueOfstringstring' =&gt; '\\ArrayType\\ArrayOfArrayOfKeyValueOfstringstring',
            'ArrayOfKeyValueOfstringstring' =&gt; '\\ArrayType\\ArrayOfKeyValueOfstringstring',
            'KeyValueOfstringstring' =&gt; '\\StructType\\KeyValueOfstringstring',
            'StoxWebProductRequestContract' =&gt; '\\StructType\\StoxWebProductRequestContract',
            'StoxWebServiceCredentialsContract' =&gt; '\\StructType\\StoxWebServiceCredentialsContract',
            'StoxWebCustomerContract' =&gt; '\\StructType\\StoxWebCustomerContract',
            'ArrayOfProductSearchCriteriaContract' =&gt; '\\ArrayType\\ArrayOfProductSearchCriteriaContract',
            'ProductSearchCriteriaContract' =&gt; '\\StructType\\ProductSearchCriteriaContract',
            'StoxWebProductResponseContract' =&gt; '\\StructType\\StoxWebProductResponseContract',
            'ArrayOfStoxWebProductContract' =&gt; '\\ArrayType\\ArrayOfStoxWebProductContract',
            'StoxWebProductContract' =&gt; '\\StructType\\StoxWebProductContract',
            'StoxWebBrandContract' =&gt; '\\StructType\\StoxWebBrandContract',
            'ArrayOfStoxWebQuantityContract' =&gt; '\\ArrayType\\ArrayOfStoxWebQuantityContract',
            'StoxWebQuantityContract' =&gt; '\\StructType\\StoxWebQuantityContract',
            'StoxWebNoProductsFoundErrorContract' =&gt; '\\StructType\\StoxWebNoProductsFoundErrorContract',
            'BaseStoxWebServiceErrorContract' =&gt; '\\StructType\\BaseStoxWebServiceErrorContract',
            'StoxWebProductNotFoundErrorContract' =&gt; '\\StructType\\StoxWebProductNotFoundErrorContract',
            'StoxWebProductServiceErrorContract' =&gt; '\\StructType\\StoxWebProductServiceErrorContract',
            'StoxWebBrandRequestContract' =&gt; '\\StructType\\StoxWebBrandRequestContract',
            'StoxWebBrandResponseContract' =&gt; '\\StructType\\StoxWebBrandResponseContract',
            'ArrayOfStoxWebBrandContract' =&gt; '\\ArrayType\\ArrayOfStoxWebBrandContract',
            'StoxWebLocationRequestContract' =&gt; '\\StructType\\StoxWebLocationRequestContract',
            'StoxWebLocationResponseContract' =&gt; '\\StructType\\StoxWebLocationResponseContract',
            'ArrayOfStoxWebLocationContract' =&gt; '\\ArrayType\\ArrayOfStoxWebLocationContract',
            'StoxWebLocationContract' =&gt; '\\StructType\\StoxWebLocationContract',
            'StoxWebNoLocationFoundErrorContract' =&gt; '\\StructType\\StoxWebNoLocationFoundErrorContract',
            'StoxWebProductQuantityResponseContract' =&gt; '\\StructType\\StoxWebProductQuantityResponseContract',
            'ArrayOfStoxWebProductQuantityContract' =&gt; '\\ArrayType\\ArrayOfStoxWebProductQuantityContract',
            'StoxWebProductQuantityContract' =&gt; '\\StructType\\StoxWebProductQuantityContract',
            'StoxWebProductDetailedQuantityResponseContract' =&gt; '\\StructType\\StoxWebProductDetailedQuantityResponseContract',
            'ArrayOfStoxWebProductDetailedQuantityContract' =&gt; '\\ArrayType\\ArrayOfStoxWebProductDetailedQuantityContract',
            'StoxWebProductDetailedQuantityContract' =&gt; '\\StructType\\StoxWebProductDetailedQuantityContract',
            'ArrayOfStoxWebDetailedQuantityContract' =&gt; '\\ArrayType\\ArrayOfStoxWebDetailedQuantityContract',
            'StoxWebDetailedQuantityContract' =&gt; '\\StructType\\StoxWebDetailedQuantityContract',
            'GetProducts' =&gt; '\\StructType\\GetProducts',
            'GetProductsResponse' =&gt; '\\StructType\\GetProductsResponse',
            'GetBrands' =&gt; '\\StructType\\GetBrands',
            'GetBrandsResponse' =&gt; '\\StructType\\GetBrandsResponse',
            'GetLocations' =&gt; '\\StructType\\GetLocations',
            'GetLocationsResponse' =&gt; '\\StructType\\GetLocationsResponse',
            'GetProductQuantities' =&gt; '\\StructType\\GetProductQuantities',
            'GetProductQuantitiesResponse' =&gt; '\\StructType\\GetProductQuantitiesResponse',
            'GetProductDetailedQuantities' =&gt; '\\StructType\\GetProductDetailedQuantities',
            'GetProductDetailedQuantitiesResponse' =&gt; '\\StructType\\GetProductDetailedQuantitiesResponse',
        );
    }
}
</pre></body></html>