<?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(
            'postaUcret' => '\\StructType\\PostaUcret',
            'postaUcretResponse' => '\\StructType\\PostaUcretResponse',
            'yurtDisiFaxUcret' => '\\StructType\\YurtDisiFaxUcret',
            'yurtDisiFaxUcretResponse' => '\\StructType\\YurtDisiFaxUcretResponse',
            'ulkeKodGrupSorgulama' => '\\StructType\\UlkeKodGrupSorgulama',
            'ulkeKodGrupSorgulamaResponse' => '\\StructType\\UlkeKodGrupSorgulamaResponse',
            'ucretKargo2' => '\\StructType\\UcretKargo2',
            'ucretKargo2Response' => '\\StructType\\UcretKargo2Response',
            'telgrafUcret' => '\\StructType\\TelgrafUcret',
            'telgrafUcretResponse' => '\\StructType\\TelgrafUcretResponse',
            'kargoUcret' => '\\StructType\\KargoUcret',
            'kargoUcretResponse' => '\\StructType\\KargoUcretResponse',
            'kargomatListesi' => '\\StructType\\KargomatListesi',
            'kargomatListesiResponse' => '\\StructType\\KargomatListesiResponse',
            'ilceSorgula' => '\\StructType\\IlceSorgula',
            'ilceSorgulaResponse' => '\\StructType\\IlceSorgulaResponse',
            'ekHizmetSorgula' => '\\StructType\\EkHizmetSorgula',
            'ekHizmetSorgulaResponse' => '\\StructType\\EkHizmetSorgulaResponse',
            'gonderiDurumAciklamaSorgula' => '\\StructType\\GonderiDurumAciklamaSorgula',
            'gonderiDurumAciklamaSorgulaResponse' => '\\StructType\\GonderiDurumAciklamaSorgulaResponse',
            'InputPostaUcret' => '\\StructType\\InputPostaUcret',
            'OutputUcret' => '\\StructType\\OutputUcret',
            'InputKargoUcret' => '\\StructType\\InputKargoUcret',
            'InputUlkeGrup' => '\\StructType\\InputUlkeGrup',
            'OutputUlkeTum' => '\\StructType\\OutputUlkeTum',
            'OutputUlke' => '\\StructType\\OutputUlke',
            'InputKargoUcret2' => '\\StructType\\InputKargoUcret2',
            'InputTelgrafUcret' => '\\StructType\\InputTelgrafUcret',
            'InputKargomat' => '\\StructType\\InputKargomat',
            'OutputKargomat' => '\\StructType\\OutputKargomat',
            'OutputKargomatDongu' => '\\StructType\\OutputKargomatDongu',
            'Input' => '\\StructType\\Input',
            'OutputIlce' => '\\StructType\\OutputIlce',
            'OutputDonguIlce' => '\\StructType\\OutputDonguIlce',
            'OutputEkHizmet' => '\\StructType\\OutputEkHizmet',
            'OutputDonguEkHizmet' => '\\StructType\\OutputDonguEkHizmet',
            'Output' => '\\StructType\\Output',
            'OutputDongu' => '\\StructType\\OutputDongu',
        );
    }
}
