<?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(
            'ArrayOfDtoPlateCarrier' => '\\ArrayType\\ArrayOfDtoPlateCarrier',
            'DtoPlateCarrier' => '\\StructType\\DtoPlateCarrier',
            'DtoPlate' => '\\StructType\\DtoPlate',
            'ArrayOfPositionTrace' => '\\ArrayType\\ArrayOfPositionTrace',
            'PositionTrace' => '\\StructType\\PositionTrace',
            'ArrayOfPositionTraceExternalId' => '\\ArrayType\\ArrayOfPositionTraceExternalId',
            'PositionTraceExternalId' => '\\StructType\\PositionTraceExternalId',
            'ArrayOfDtoNewPlate' => '\\ArrayType\\ArrayOfDtoNewPlate',
            'DtoNewPlate' => '\\StructType\\DtoNewPlate',
            'ArrayOfstring' => '\\ArrayType\\ArrayOfstring',
            'ArrayOfint' => '\\ArrayType\\ArrayOfint',
            'ArrayOfDtoManageDriver' => '\\ArrayType\\ArrayOfDtoManageDriver',
            'DtoManageDriver' => '\\StructType\\DtoManageDriver',
            'ArrayOfDtoTrackTransportWs' => '\\ArrayType\\ArrayOfDtoTrackTransportWs',
            'DtoTrackTransportWs' => '\\StructType\\DtoTrackTransportWs',
            'ArrayOfDtoTrackActivityWs' => '\\ArrayType\\ArrayOfDtoTrackActivityWs',
            'DtoTrackActivityWs' => '\\StructType\\DtoTrackActivityWs',
            'ArrayOfDtoTrackActivityContentWs' => '\\ArrayType\\ArrayOfDtoTrackActivityContentWs',
            'DtoTrackActivityContentWs' => '\\StructType\\DtoTrackActivityContentWs',
            'ArrayOfDtoTrackIncidenceWs' => '\\ArrayType\\ArrayOfDtoTrackIncidenceWs',
            'DtoTrackIncidenceWs' => '\\StructType\\DtoTrackIncidenceWs',
            'ArrayOfDtoTrackNotificationWs' => '\\ArrayType\\ArrayOfDtoTrackNotificationWs',
            'DtoTrackNotificationWs' => '\\StructType\\DtoTrackNotificationWs',
            'ArrayOfDtoTrackTransportPointControlWs' => '\\ArrayType\\ArrayOfDtoTrackTransportPointControlWs',
            'DtoTrackTransportPointControlWs' => '\\StructType\\DtoTrackTransportPointControlWs',
            'ArrayOfDtoRouteWs' => '\\ArrayType\\ArrayOfDtoRouteWs',
            'DtoRouteWs' => '\\StructType\\DtoRouteWs',
            'ArrayOfDtoRouteActivityWs' => '\\ArrayType\\ArrayOfDtoRouteActivityWs',
            'DtoRouteActivityWs' => '\\StructType\\DtoRouteActivityWs',
            'ArrayOfDtoLocationWs' => '\\ArrayType\\ArrayOfDtoLocationWs',
            'DtoLocationWs' => '\\StructType\\DtoLocationWs',
            'DtoRoutePointControlWs' => '\\StructType\\DtoRoutePointControlWs',
            'GetAllPlates' => '\\StructType\\GetAllPlates',
            'GetAllPlatesResponse' => '\\StructType\\GetAllPlatesResponse',
            'NewPlate' => '\\StructType\\NewPlate',
            'NewPlateResponse' => '\\StructType\\NewPlateResponse',
            'DesactivePlate' => '\\StructType\\DesactivePlate',
            'DesactivePlateResponse' => '\\StructType\\DesactivePlateResponse',
            'DesactivePlateByExternalId' => '\\StructType\\DesactivePlateByExternalId',
            'DesactivePlateByExternalIdResponse' => '\\StructType\\DesactivePlateByExternalIdResponse',
            'ActivePlate' => '\\StructType\\ActivePlate',
            'ActivePlateResponse' => '\\StructType\\ActivePlateResponse',
            'ActivePlateByExternalId' => '\\StructType\\ActivePlateByExternalId',
            'ActivePlateByExternalIdResponse' => '\\StructType\\ActivePlateByExternalIdResponse',
            'ListDriver' => '\\StructType\\ListDriver',
            'ListDriverResponse' => '\\StructType\\ListDriverResponse',
            'NewDriver' => '\\StructType\\NewDriver',
            'NewDriverResponse' => '\\StructType\\NewDriverResponse',
            'ListTrackTransport' => '\\StructType\\ListTrackTransport',
            'ListTrackTransportResponse' => '\\StructType\\ListTrackTransportResponse',
            'ListRoute' => '\\StructType\\ListRoute',
            'ListRouteResponse' => '\\StructType\\ListRouteResponse',
            'NotifyPositions' => '\\StructType\\NotifyPositions',
            'NotifyPositionsResponse' => '\\StructType\\NotifyPositionsResponse',
            'NotifyPositionsByExternalId' => '\\StructType\\NotifyPositionsByExternalId',
            'NotifyPositionsByExternalIdResponse' => '\\StructType\\NotifyPositionsByExternalIdResponse',
            'ListWarehouse' => '\\StructType\\ListWarehouse',
            'ListWarehouseResponse' => '\\StructType\\ListWarehouseResponse',
        );
    }
}
