<?php

namespace Liberty\Service\Cotizador;

/**
 * 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(
            'cotizador' => '\\Liberty\\Service\\Cotizador\\StructType\\Cotizador',
            'cotizadorRequestString' => '\\Liberty\\Service\\Cotizador\\StructType\\CotizadorRequestString',
            'mapValues' => '\\Liberty\\Service\\Cotizador\\StructType\\MapValues',
            'entry' => '\\Liberty\\Service\\Cotizador\\StructType\\Entry',
            'cotizadorResponse' => '\\Liberty\\Service\\Cotizador\\StructType\\CotizadorResponse',
            'cotizadorCabeceraResponse' => '\\Liberty\\Service\\Cotizador\\StructType\\CotizadorCabeceraResponse',
            'cotizadorDetalleResponse' => '\\Liberty\\Service\\Cotizador\\StructType\\CotizadorDetalleResponse',
            'mapCoberturas' => '\\Liberty\\Service\\Cotizador\\StructType\\MapCoberturas',
            'cotizadorDetalleCoberturaResponse' => '\\Liberty\\Service\\Cotizador\\StructType\\CotizadorDetalleCoberturaResponse',
            'Exception' => '\\Liberty\\Service\\Cotizador\\StructType\\Exception',
        );
    }
}
