<?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' => '\\ArrayType\\ArrayOfanyType',
            'ArrayOfArrayOfKeyValueOfstringstring' => '\\ArrayType\\ArrayOfArrayOfKeyValueOfstringstring',
            'ArrayOfKeyValueOfstringstring' => '\\ArrayType\\ArrayOfKeyValueOfstringstring',
            'KeyValueOfstringstring' => '\\StructType\\KeyValueOfstringstring',
            'StoxWebProductRequestContract' => '\\StructType\\StoxWebProductRequestContract',
            'StoxWebServiceCredentialsContract' => '\\StructType\\StoxWebServiceCredentialsContract',
            'StoxWebCustomerContract' => '\\StructType\\StoxWebCustomerContract',
            'ArrayOfProductSearchCriteriaContract' => '\\ArrayType\\ArrayOfProductSearchCriteriaContract',
            'ProductSearchCriteriaContract' => '\\StructType\\ProductSearchCriteriaContract',
            'StoxWebProductResponseContract' => '\\StructType\\StoxWebProductResponseContract',
            'ArrayOfStoxWebProductContract' => '\\ArrayType\\ArrayOfStoxWebProductContract',
            'StoxWebProductContract' => '\\StructType\\StoxWebProductContract',
            'StoxWebBrandContract' => '\\StructType\\StoxWebBrandContract',
            'ArrayOfStoxWebQuantityContract' => '\\ArrayType\\ArrayOfStoxWebQuantityContract',
            'StoxWebQuantityContract' => '\\StructType\\StoxWebQuantityContract',
            'StoxWebNoProductsFoundErrorContract' => '\\StructType\\StoxWebNoProductsFoundErrorContract',
            'BaseStoxWebServiceErrorContract' => '\\StructType\\BaseStoxWebServiceErrorContract',
            'StoxWebProductNotFoundErrorContract' => '\\StructType\\StoxWebProductNotFoundErrorContract',
            'StoxWebProductServiceErrorContract' => '\\StructType\\StoxWebProductServiceErrorContract',
            'StoxWebBrandRequestContract' => '\\StructType\\StoxWebBrandRequestContract',
            'StoxWebBrandResponseContract' => '\\StructType\\StoxWebBrandResponseContract',
            'ArrayOfStoxWebBrandContract' => '\\ArrayType\\ArrayOfStoxWebBrandContract',
            'StoxWebLocationRequestContract' => '\\StructType\\StoxWebLocationRequestContract',
            'StoxWebLocationResponseContract' => '\\StructType\\StoxWebLocationResponseContract',
            'ArrayOfStoxWebLocationContract' => '\\ArrayType\\ArrayOfStoxWebLocationContract',
            'StoxWebLocationContract' => '\\StructType\\StoxWebLocationContract',
            'StoxWebNoLocationFoundErrorContract' => '\\StructType\\StoxWebNoLocationFoundErrorContract',
            'StoxWebProductQuantityResponseContract' => '\\StructType\\StoxWebProductQuantityResponseContract',
            'ArrayOfStoxWebProductQuantityContract' => '\\ArrayType\\ArrayOfStoxWebProductQuantityContract',
            'StoxWebProductQuantityContract' => '\\StructType\\StoxWebProductQuantityContract',
            'StoxWebProductDetailedQuantityResponseContract' => '\\StructType\\StoxWebProductDetailedQuantityResponseContract',
            'ArrayOfStoxWebProductDetailedQuantityContract' => '\\ArrayType\\ArrayOfStoxWebProductDetailedQuantityContract',
            'StoxWebProductDetailedQuantityContract' => '\\StructType\\StoxWebProductDetailedQuantityContract',
            'ArrayOfStoxWebDetailedQuantityContract' => '\\ArrayType\\ArrayOfStoxWebDetailedQuantityContract',
            'StoxWebDetailedQuantityContract' => '\\StructType\\StoxWebDetailedQuantityContract',
            'GetProducts' => '\\StructType\\GetProducts',
            'GetProductsResponse' => '\\StructType\\GetProductsResponse',
            'GetBrands' => '\\StructType\\GetBrands',
            'GetBrandsResponse' => '\\StructType\\GetBrandsResponse',
            'GetLocations' => '\\StructType\\GetLocations',
            'GetLocationsResponse' => '\\StructType\\GetLocationsResponse',
            'GetProductQuantities' => '\\StructType\\GetProductQuantities',
            'GetProductQuantitiesResponse' => '\\StructType\\GetProductQuantitiesResponse',
            'GetProductDetailedQuantities' => '\\StructType\\GetProductDetailedQuantities',
            'GetProductDetailedQuantitiesResponse' => '\\StructType\\GetProductDetailedQuantitiesResponse',
        );
    }
}
