<?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(
            'notificacion-transaccion' => '\\StructType\\Notificacion_transaccion',
            'productos' => '\\StructType\\Productos',
            'medios-de-pago' => '\\StructType\\Medios_de_pago',
            'atributos' => '\\StructType\\Atributos',
            'notificacion-oferta-producto' => '\\StructType\\Notificacion_oferta_producto',
            'conceptos' => '\\StructType\\Conceptos',
            'notificacion-concepto' => '\\StructType\\Notificacion_concepto',
            'importes-tasas' => '\\StructType\\Importes_tasas',
            'notificacion-importe-tasa' => '\\StructType\\Notificacion_importe_tasa',
            'notificacion-medio-de-pago' => '\\StructType\\Notificacion_medio_de_pago',
            'atributo' => '\\StructType\\Atributo',
            'notificarTransaccion' => '\\StructType\\NotificarTransaccion',
        );
    }
}
