<?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(
            'GetPriceAndAvailability' => '\\StructType\\GetPriceAndAvailability',
            'GetPriceAndAvailabilityResponse' => '\\StructType\\GetPriceAndAvailabilityResponse',
            'SubmitOrder' => '\\StructType\\SubmitOrder',
            'SubmitOrderResponse' => '\\StructType\\SubmitOrderResponse',
            'GetTransportList' => '\\StructType\\GetTransportList',
            'GetTransportListResponse' => '\\StructType\\GetTransportListResponse',
            'GetWarehouseList' => '\\StructType\\GetWarehouseList',
            'GetWarehouseListResponse' => '\\StructType\\GetWarehouseListResponse',
            'TVHWS.pa_request' => '\\StructType\\TVHWS_pa_request',
            'ArrayOfTVHWS.item_request' => '\\ArrayType\\ArrayOfTVHWS_item_request',
            'TVHWS.item_request' => '\\StructType\\TVHWS_item_request',
            'TVHWS.passport' => '\\StructType\\TVHWS_passport',
            'TVHWS.pa_response' => '\\StructType\\TVHWS_pa_response',
            'ArrayOfTVHWS.error' => '\\ArrayType\\ArrayOfTVHWS_error',
            'TVHWS.error' => '\\StructType\\TVHWS_error',
            'ArrayOfTVHWS.item_response' => '\\ArrayType\\ArrayOfTVHWS_item_response',
            'TVHWS.item_response' => '\\StructType\\TVHWS_item_response',
            'ArrayOfTVHWS.inv' => '\\ArrayType\\ArrayOfTVHWS_inv',
            'TVHWS.inv' => '\\StructType\\TVHWS_inv',
            'TVHWS.item' => '\\StructType\\TVHWS_item',
            'ArrayOfTVHWS.attribute' => '\\ArrayType\\ArrayOfTVHWS_attribute',
            'TVHWS.attribute' => '\\StructType\\TVHWS_attribute',
            'TVHWS.price' => '\\StructType\\TVHWS_price',
            'ArrayOfTVHWS.qtybreak' => '\\ArrayType\\ArrayOfTVHWS_qtybreak',
            'TVHWS.qtybreak' => '\\StructType\\TVHWS_qtybreak',
            'TVHWS.order_request' => '\\StructType\\TVHWS_order_request',
            'ArrayOfTVHWS.carrier' => '\\ArrayType\\ArrayOfTVHWS_carrier',
            'TVHWS.carrier' => '\\StructType\\TVHWS_carrier',
            'TVHWS.address' => '\\StructType\\TVHWS_address',
            'TVHWS.order_response' => '\\StructType\\TVHWS_order_response',
            'ArrayOfTVHWS.order_info' => '\\ArrayType\\ArrayOfTVHWS_order_info',
            'TVHWS.order_info' => '\\StructType\\TVHWS_order_info',
            'TVHWS.transport_request' => '\\StructType\\TVHWS_transport_request',
            'TVHWS.transport_response' => '\\StructType\\TVHWS_transport_response',
            'ArrayOfTVHWS.transport' => '\\ArrayType\\ArrayOfTVHWS_transport',
            'TVHWS.transport' => '\\StructType\\TVHWS_transport',
            'TVHWS.warehouse' => '\\StructType\\TVHWS_warehouse',
            'TVHWS.warehouse_request' => '\\StructType\\TVHWS_warehouse_request',
            'TVHWS.warehouse_response' => '\\StructType\\TVHWS_warehouse_response',
            'ArrayOfTVHWS.warehouse' => '\\ArrayType\\ArrayOfTVHWS_warehouse',
        );
    }
}
