<?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(
            'DT_CUST_AND_ORDER' => '\\StructType\\DT_CUST_AND_ORDER',
            'order' => '\\StructType\\Order',
            'customerData' => '\\StructType\\CustomerData',
            'orderData' => '\\StructType\\OrderData',
            'billingAddress' => '\\StructType\\BillingAddress',
            'deliveryAddress' => '\\StructType\\DeliveryAddress',
            'header' => '\\StructType\\Header',
            'orderSum' => '\\StructType\\OrderSum',
            'position' => '\\StructType\\Position',
        );
    }
}
