<?php

namespace LaGangaServices;

/**
 * Class which returns the class map definition
 * @package LaGangaServices
 */
class LaGangaServicesClassMap
{
    /**
     * 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(
            'RegistrarPedido' => '\\LaGangaServices\\StructType\\LaGangaServicesRegistrarPedido',
            'WSPedido' => '\\LaGangaServices\\StructType\\LaGangaServicesWSPedido',
            'ArrayOfWSProductos' => '\\LaGangaServices\\ArrayType\\LaGangaServicesArrayOfWSProductos',
            'WSProductos' => '\\LaGangaServices\\StructType\\LaGangaServicesWSProductos',
            'RegistrarPedidoResponse' => '\\LaGangaServices\\StructType\\LaGangaServicesRegistrarPedidoResponse',
            'ValidarUsuario' => '\\LaGangaServices\\StructType\\LaGangaServicesValidarUsuario',
            'RechazarFacturaInternet' => '\\LaGangaServices\\StructType\\LaGangaServicesRechazarFacturaInternet',
            'RechazarFacturaInternetResponse' => '\\LaGangaServices\\StructType\\LaGangaServicesRechazarFacturaInternetResponse',
            'RegistrarFacturaInternet' => '\\LaGangaServices\\StructType\\LaGangaServicesRegistrarFacturaInternet',
            'WS_DatosFactura' => '\\LaGangaServices\\StructType\\LaGangaServicesWS_DatosFactura',
            'ArrayOfWS_DatosFactura_Productos' => '\\LaGangaServices\\ArrayType\\LaGangaServicesArrayOfWS_DatosFactura_Productos',
            'WS_DatosFactura_Productos' => '\\LaGangaServices\\StructType\\LaGangaServicesWS_DatosFactura_Productos',
            'RegistrarFacturaInternetResponse' => '\\LaGangaServices\\StructType\\LaGangaServicesRegistrarFacturaInternetResponse',
            'RegistrarCambioPrecio' => '\\LaGangaServices\\StructType\\LaGangaServicesRegistrarCambioPrecio',
            'RegistrarCambioPrecioResponse' => '\\LaGangaServices\\StructType\\LaGangaServicesRegistrarCambioPrecioResponse',
        );
    }
}
