<?php

namespace Liberty\Services\Inspeccion;

/**
 * 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(
            'consultar' => '\\Liberty\\Services\\Inspeccion\\StructType\\Consultar',
            'consultarResponse' => '\\Liberty\\Services\\Inspeccion\\StructType\\ConsultarResponse',
            'solicitarAlt' => '\\Liberty\\Services\\Inspeccion\\StructType\\SolicitarAlt',
            'solicitarAltResponse' => '\\Liberty\\Services\\Inspeccion\\StructType\\SolicitarAltResponse',
            'ConsultarRequest' => '\\Liberty\\Services\\Inspeccion\\StructType\\ConsultarRequest',
            'EmigenResponse' => '\\Liberty\\Services\\Inspeccion\\StructType\\EmigenResponse',
            'ConsultarResponse' => '\\Liberty\\Services\\Inspeccion\\StructType\\ConsultarResponse_1',
            'SolicitarAltRequest' => '\\Liberty\\Services\\Inspeccion\\StructType\\SolicitarAltRequest',
            'SolicitarResponse' => '\\Liberty\\Services\\Inspeccion\\StructType\\SolicitarResponse',
        );
    }
}
