<?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(
            'ProductColorData' => '\\StructType\\ProductColorData',
            'ProductSetupData' => '\\StructType\\ProductSetupData',
            'ProductImageResult' => '\\StructType\\ProductImageResult',
            'CMProductDataResult' => '\\StructType\\CMProductDataResult',
            'RawProductPackingSoap' => '\\StructType\\RawProductPackingSoap',
            'ActiveProduct' => '\\StructType\\ActiveProduct',
            'ProductRush' => '\\StructType\\ProductRush',
            'DeactivatedProduct' => '\\StructType\\DeactivatedProduct',
            'Category' => '\\StructType\\Category',
            'SubcategoryId' => '\\StructType\\SubcategoryId',
            'Subcategory' => '\\StructType\\Subcategory',
            'ProductId' => '\\StructType\\ProductId',
            'Decoration' => '\\StructType\\Decoration',
        );
    }
}
