<?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(
            'CustomerProduct' => '\\StructType\\CustomerProduct',
            'CustomerProductResponse' => '\\StructType\\CustomerProductResponse',
            'CustomerProductResult' => '\\StructType\\CustomerProductResult',
            'CustomerProductBranch' => '\\StructType\\CustomerProductBranch',
            'CustomerProductBranchResponse' => '\\StructType\\CustomerProductBranchResponse',
            'CustomerProductBranchResult' => '\\StructType\\CustomerProductBranchResult',
            'CustomerProductTest' => '\\StructType\\CustomerProductTest',
            'CustomerProductTestResponse' => '\\StructType\\CustomerProductTestResponse',
            'CustomerProductTestResult' => '\\StructType\\CustomerProductTestResult',
            'CustomerExch' => '\\StructType\\CustomerExch',
            'CustomerExchResponse' => '\\StructType\\CustomerExchResponse',
            'CustomerExchResult' => '\\StructType\\CustomerExchResult',
            'CustomerProductBrand' => '\\StructType\\CustomerProductBrand',
            'CustomerProductBrandResponse' => '\\StructType\\CustomerProductBrandResponse',
            'CustomerProductBrandResult' => '\\StructType\\CustomerProductBrandResult',
            'CustomerProductGroup' => '\\StructType\\CustomerProductGroup',
            'CustomerProductGroupResponse' => '\\StructType\\CustomerProductGroupResponse',
            'CustomerProductGroupResult' => '\\StructType\\CustomerProductGroupResult',
            'MarkaList' => '\\StructType\\MarkaList',
            'MarkaListResponse' => '\\StructType\\MarkaListResponse',
            'MarkaListResult' => '\\StructType\\MarkaListResult',
            'ModelList' => '\\StructType\\ModelList',
            'ModelListResponse' => '\\StructType\\ModelListResponse',
            'ModelListResult' => '\\StructType\\ModelListResult',
            'GrupList' => '\\StructType\\GrupList',
            'GrupListResponse' => '\\StructType\\GrupListResponse',
            'GrupListResult' => '\\StructType\\GrupListResult',
            'AltGrupList' => '\\StructType\\AltGrupList',
            'AltGrupListResponse' => '\\StructType\\AltGrupListResponse',
            'AltGrupListResult' => '\\StructType\\AltGrupListResult',
            'CustomerProductBrandGroup' => '\\StructType\\CustomerProductBrandGroup',
            'CustomerProductBrandGroupResponse' => '\\StructType\\CustomerProductBrandGroupResponse',
            'CustomerProductBrandGroupResult' => '\\StructType\\CustomerProductBrandGroupResult',
        );
    }
}
