<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(
            'verificarComunicacion' =&gt; '\\StructType\\VerificarComunicacion',
            'verificarComunicacionResponse' =&gt; '\\StructType\\VerificarComunicacionResponse',
            'respuestaComunicacion' =&gt; '\\StructType\\RespuestaComunicacion',
            'modelDto' =&gt; '\\StructType\\ModelDto',
            'model' =&gt; '\\StructType\\Model',
            'mensajeServicio' =&gt; '\\StructType\\MensajeServicio',
            'verificarNit' =&gt; '\\StructType\\VerificarNit',
            'solicitudVerificarNit' =&gt; '\\StructType\\SolicitudVerificarNit',
            'verificarNitResponse' =&gt; '\\StructType\\VerificarNitResponse',
            'respuestaVerificarNit' =&gt; '\\StructType\\RespuestaVerificarNit',
            'respuestaConfiguracion' =&gt; '\\StructType\\RespuestaConfiguracion',
            'cuisMasivo' =&gt; '\\StructType\\CuisMasivo',
            'solicitudCuisMasivoSistemas' =&gt; '\\StructType\\SolicitudCuisMasivoSistemas',
            'solicitudListaCuisDto' =&gt; '\\StructType\\SolicitudListaCuisDto',
            'cuisMasivoResponse' =&gt; '\\StructType\\CuisMasivoResponse',
            'respuestaCuisMasivo' =&gt; '\\StructType\\RespuestaCuisMasivo',
            'respuestaListaRegistroCuisSoapDto' =&gt; '\\StructType\\RespuestaListaRegistroCuisSoapDto',
            'cufd' =&gt; '\\StructType\\Cufd',
            'solicitudCufd' =&gt; '\\StructType\\SolicitudCufd',
            'cufdResponse' =&gt; '\\StructType\\CufdResponse',
            'respuestaCufd' =&gt; '\\StructType\\RespuestaCufd',
            'notificaCertificadoRevocado' =&gt; '\\StructType\\NotificaCertificadoRevocado',
            'solicitudNotifcaRevocado' =&gt; '\\StructType\\SolicitudNotifcaRevocado',
            'notificaCertificadoRevocadoResponse' =&gt; '\\StructType\\NotificaCertificadoRevocadoResponse',
            'respuestaNotificaRevocado' =&gt; '\\StructType\\RespuestaNotificaRevocado',
            'cuis' =&gt; '\\StructType\\Cuis',
            'solicitudCuis' =&gt; '\\StructType\\SolicitudCuis',
            'cuisResponse' =&gt; '\\StructType\\CuisResponse',
            'respuestaCuis' =&gt; '\\StructType\\RespuestaCuis',
            'cufdMasivo' =&gt; '\\StructType\\CufdMasivo',
            'solicitudCufdMasivo' =&gt; '\\StructType\\SolicitudCufdMasivo',
            'solicitudListaCufdDto' =&gt; '\\StructType\\SolicitudListaCufdDto',
            'cufdMasivoResponse' =&gt; '\\StructType\\CufdMasivoResponse',
            'respuestaCufdMasivo' =&gt; '\\StructType\\RespuestaCufdMasivo',
            'respuestaListaRegistroCufdSoapDto' =&gt; '\\StructType\\RespuestaListaRegistroCufdSoapDto',
        );
    }
}
</pre></body></html>