<?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(
            'Artikelstamm' => '\\StructType\\Artikelstamm',
            'ArtikelstammResponse' => '\\StructType\\ArtikelstammResponse',
            'ArrayOfArtikel' => '\\ArrayType\\ArrayOfArtikel',
            'artikel' => '\\StructType\\Artikel',
            'Bestellung' => '\\StructType\\Bestellung',
            'Bestellkopf' => '\\StructType\\Bestellkopf',
            'ArrayOfBestellPosition' => '\\ArrayType\\ArrayOfBestellPosition',
            'BestellPosition' => '\\StructType\\BestellPosition',
            'Rechnungsinformationen' => '\\StructType\\Rechnungsinformationen',
            'BestellungResponse' => '\\StructType\\BestellungResponse',
            'Trackingnummern' => '\\StructType\\Trackingnummern',
            'TrackingnummernResponse' => '\\StructType\\TrackingnummernResponse',
            'ArrayOfDispatchnotice' => '\\ArrayType\\ArrayOfDispatchnotice',
            'Dispatchnotice' => '\\StructType\\Dispatchnotice',
            'Dispatchkopf' => '\\StructType\\Dispatchkopf',
            'ArrayOfDispatch_Position' => '\\ArrayType\\ArrayOfDispatch_Position',
            'Dispatch_Position' => '\\StructType\\Dispatch_Position',
            'Retouren' => '\\StructType\\Retouren',
            'RetourenResponse' => '\\StructType\\RetourenResponse',
            'ArrayOfRetoure' => '\\ArrayType\\ArrayOfRetoure',
            'Retoure' => '\\StructType\\Retoure',
            'Retourekopf' => '\\StructType\\Retourekopf',
            'ArrayOfRetourepositionen' => '\\ArrayType\\ArrayOfRetourepositionen',
            'Retourepositionen' => '\\StructType\\Retourepositionen',
            'GetCustomStatusCode' => '\\StructType\\GetCustomStatusCode',
            'GetCustomStatusCodeResponse' => '\\StructType\\GetCustomStatusCodeResponse',
            'ArrayOfArrayOfString' => '\\ArrayType\\ArrayOfArrayOfString',
            'ArrayOfString' => '\\ArrayType\\ArrayOfString',
            'setartikelstamm' => '\\StructType\\Setartikelstamm',
            'ArrayOfSetartikel' => '\\ArrayType\\ArrayOfSetartikel',
            'setartikel' => '\\StructType\\Setartikel',
            'setartikelstammResponse' => '\\StructType\\SetartikelstammResponse',
        );
    }
}
