<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;?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(
            'WS_Simit_ComparendosDescuentos' =&gt; '\\StructType\\WS_Simit_ComparendosDescuentos',
            'datosEntradaComparendosDescuento' =&gt; '\\StructType\\DatosEntradaComparendosDescuento',
            'WS_Simit_ComparendosDescuentosResponse' =&gt; '\\StructType\\WS_Simit_ComparendosDescuentosResponse',
            'datosSalidaComparendosDescuento' =&gt; '\\StructType\\DatosSalidaComparendosDescuento',
            'comparendoDescuento' =&gt; '\\StructType\\ComparendoDescuento',
            'WS_Simit_CursoCia' =&gt; '\\StructType\\WS_Simit_CursoCia',
            'datosEntradaCursoCia' =&gt; '\\StructType\\DatosEntradaCursoCia',
            'cursoComparendo' =&gt; '\\StructType\\CursoComparendo',
            'WS_Simit_CursoCiaResponse' =&gt; '\\StructType\\WS_Simit_CursoCiaResponse',
            'datosSalidaCursoCia' =&gt; '\\StructType\\DatosSalidaCursoCia',
            'WS_Simit_PagoCia' =&gt; '\\StructType\\WS_Simit_PagoCia',
            'datosEntradaPagoCia' =&gt; '\\StructType\\DatosEntradaPagoCia',
            'pagoComparendo' =&gt; '\\StructType\\PagoComparendo',
            'WS_Simit_PagoCiaResponse' =&gt; '\\StructType\\WS_Simit_PagoCiaResponse',
            'datosSalidaPagoCia' =&gt; '\\StructType\\DatosSalidaPagoCia',
        );
    }
}
</pre></body></html>