<?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(
            'GetEnabledDataSet' => '\\StructType\\GetEnabledDataSet',
            'GetEnabledDataSetResponse' => '\\StructType\\GetEnabledDataSetResponse',
            'GetSchemaDataSet' => '\\StructType\\GetSchemaDataSet',
            'GetSchemaDataSetResponse' => '\\StructType\\GetSchemaDataSetResponse',
            'GetDataSet' => '\\StructType\\GetDataSet',
            'GetDataSetResponse' => '\\StructType\\GetDataSetResponse',
            'GetDataSetChanges' => '\\StructType\\GetDataSetChanges',
            'GetDataSetChangesResponse' => '\\StructType\\GetDataSetChangesResponse',
            'GetEnabledDataSet_Output' => '\\StructType\\GetEnabledDataSet_Output',
            'ArrayOfSetDati' => '\\ArrayType\\ArrayOfSetDati',
            'SetDati' => '\\StructType\\SetDati',
            'GetSchemaDataSet_Output' => '\\StructType\\GetSchemaDataSet_Output',
            'ArrayOfField' => '\\ArrayType\\ArrayOfField',
            'Field' => '\\StructType\\Field',
            'GetDataSet_Output' => '\\StructType\\GetDataSet_Output',
            'GetDataSetChanges_Output' => '\\StructType\\GetDataSetChanges_Output',
        );
    }
}
