<?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(
            'SorguException' => '\\StructType\\SorguException',
            'Exception' => '\\StructType\\Exception',
            'kabulEkle' => '\\StructType\\KabulEkle',
            'kabulEkleResponse' => '\\StructType\\KabulEkleResponse',
            'kabulEkle2' => '\\StructType\\KabulEkle2',
            'kabulEkle2Response' => '\\StructType\\KabulEkle2Response',
            'kabulEkleParcaliBarkod' => '\\StructType\\KabulEkleParcaliBarkod',
            'kabulEkleParcaliBarkodResponse' => '\\StructType\\KabulEkleParcaliBarkodResponse',
            'referansVeriSil' => '\\StructType\\ReferansVeriSil',
            'referansVeriSilResponse' => '\\StructType\\ReferansVeriSilResponse',
            'barkodVeriSil' => '\\StructType\\BarkodVeriSil',
            'barkodVeriSilResponse' => '\\StructType\\BarkodVeriSilResponse',
            'siparisIstekEkle' => '\\StructType\\SiparisIstekEkle',
            'siparisIstekEkleResponse' => '\\StructType\\SiparisIstekEkleResponse',
            'siparisIstekEkle2' => '\\StructType\\SiparisIstekEkle2',
            'siparisIstekEkle2Response' => '\\StructType\\SiparisIstekEkle2Response',
            'Input' => '\\StructType\\Input',
            'InputDongu' => '\\StructType\\InputDongu',
            'Output' => '\\StructType\\Output',
            'Input2' => '\\StructType\\Input2',
            'InputDongu2' => '\\StructType\\InputDongu2',
            'GondericiBilgi' => '\\StructType\\GondericiBilgi',
            'Output2' => '\\StructType\\Output2',
            'OutputDongu2' => '\\StructType\\OutputDongu2',
            'InputParcaliBarkod' => '\\StructType\\InputParcaliBarkod',
            'InputParcaliBarkodDongu' => '\\StructType\\InputParcaliBarkodDongu',
            'InputRefDelete' => '\\StructType\\InputRefDelete',
            'OutputRefDelete' => '\\StructType\\OutputRefDelete',
            'InputDelete' => '\\StructType\\InputDelete',
            'OutputDelete' => '\\StructType\\OutputDelete',
            'InputIstek' => '\\StructType\\InputIstek',
            'OutputIstek' => '\\StructType\\OutputIstek',
            'InputIstek2' => '\\StructType\\InputIstek2',
        );
    }
}
