<?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(
            'GetLTLRates' => '\\StructType\\GetLTLRates',
            'LTLRequest' => '\\StructType\\LTLRequest',
            'ArrayOfShipment' => '\\ArrayType\\ArrayOfShipment',
            'Shipment' => '\\StructType\\Shipment',
            'ArrayOfString' => '\\ArrayType\\ArrayOfString',
            'GetLTLRatesResponse' => '\\StructType\\GetLTLRatesResponse',
            'RatingResult' => '\\StructType\\RatingResult',
            'LTLRatingResponse2' => '\\StructType\\LTLRatingResponse2',
            'ArrayOfLaneAccessorialRates' => '\\ArrayType\\ArrayOfLaneAccessorialRates',
            'LaneAccessorialRates' => '\\StructType\\LaneAccessorialRates',
            'ArrayOfLTLRatingResponse2' => '\\ArrayType\\ArrayOfLTLRatingResponse2',
            'Login' => '\\StructType\\Login',
            'LoginResponse' => '\\StructType\\LoginResponse',
            'GetProfiles' => '\\StructType\\GetProfiles',
            'GetProfilesResponse' => '\\StructType\\GetProfilesResponse',
            'ArrayOfProfileDetail' => '\\ArrayType\\ArrayOfProfileDetail',
            'ProfileDetail' => '\\StructType\\ProfileDetail',
        );
    }
}
