<?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(
            'GenerateToken' => '\\StructType\\GenerateToken',
            'EsitoOperazioneServizio' => '\\StructType\\EsitoOperazioneServizio',
            'EsitoOperazione' => '\\StructType\\EsitoOperazione',
            'GenerateTokenResponse' => '\\StructType\\GenerateTokenResponse',
            'TokenInfo' => '\\StructType\\TokenInfo',
            'Authentication_Test' => '\\StructType\\Authentication_Test',
            'Authentication_TestResponse' => '\\StructType\\Authentication_TestResponse',
            'Test' => '\\StructType\\Test',
            'ArrayOfString' => '\\ArrayType\\ArrayOfString',
            'ElencoSchedineEsito' => '\\StructType\\ElencoSchedineEsito',
            'ArrayOfEsitoOperazioneServizio' => '\\ArrayType\\ArrayOfEsitoOperazioneServizio',
            'TestResponse' => '\\StructType\\TestResponse',
            'GestioneAppartamenti_Test' => '\\StructType\\GestioneAppartamenti_Test',
            'GestioneAppartamenti_TestResponse' => '\\StructType\\GestioneAppartamenti_TestResponse',
            'GestioneAppartamenti_FileUnico_Test' => '\\StructType\\GestioneAppartamenti_FileUnico_Test',
            'GestioneAppartamenti_FileUnico_TestResponse' => '\\StructType\\GestioneAppartamenti_FileUnico_TestResponse',
            'Send' => '\\StructType\\Send',
            'SendResponse' => '\\StructType\\SendResponse',
            'GestioneAppartamenti_Send' => '\\StructType\\GestioneAppartamenti_Send',
            'GestioneAppartamenti_SendResponse' => '\\StructType\\GestioneAppartamenti_SendResponse',
            'GestioneAppartamenti_FileUnico_Send' => '\\StructType\\GestioneAppartamenti_FileUnico_Send',
            'GestioneAppartamenti_FileUnico_SendResponse' => '\\StructType\\GestioneAppartamenti_FileUnico_SendResponse',
            'Tabella' => '\\StructType\\Tabella',
            'TabellaResponse' => '\\StructType\\TabellaResponse',
            'Ricevuta' => '\\StructType\\Ricevuta',
            'RicevutaResponse' => '\\StructType\\RicevutaResponse',
            'GestioneAppartamenti_AggiungiAppartamento' => '\\StructType\\GestioneAppartamenti_AggiungiAppartamento',
            'GestioneAppartamenti_AggiungiAppartamentoResponse' => '\\StructType\\GestioneAppartamenti_AggiungiAppartamentoResponse',
            'GestioneAppartamenti_DisabilitaAppartamento' => '\\StructType\\GestioneAppartamenti_DisabilitaAppartamento',
            'GestioneAppartamenti_DisabilitaAppartamentoResponse' => '\\StructType\\GestioneAppartamenti_DisabilitaAppartamentoResponse',
        );
    }
}
