<?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(
            'ImportShipment' => '\\StructType\\ImportShipment',
            'ShipmentRow' => '\\StructType\\ShipmentRow',
            'AddressRow' => '\\StructType\\AddressRow',
            'ArrayOfColloRow' => '\\ArrayType\\ArrayOfColloRow',
            'ColloRow' => '\\StructType\\ColloRow',
            'ArrayOfColloArticleRow' => '\\ArrayType\\ArrayOfColloArticleRow',
            'ColloArticleRow' => '\\StructType\\ColloArticleRow',
            'ArrayOfColloCodeRow' => '\\ArrayType\\ArrayOfColloCodeRow',
            'ColloCodeRow' => '\\StructType\\ColloCodeRow',
            'ArrayOfAdditionalInformationRow' => '\\ArrayType\\ArrayOfAdditionalInformationRow',
            'AdditionalInformationRow' => '\\StructType\\AdditionalInformationRow',
            'PrinterRow' => '\\StructType\\PrinterRow',
            'ImportShipmentResponse' => '\\StructType\\ImportShipmentResponse',
            'ImportShipmentAndGenerateBarcode' => '\\StructType\\ImportShipmentAndGenerateBarcode',
            'ImportShipmentAndGenerateBarcodeResponse' => '\\StructType\\ImportShipmentAndGenerateBarcodeResponse',
            'ImportShipmentReturnImage' => '\\StructType\\ImportShipmentReturnImage',
            'ImportShipmentReturnImageResponse' => '\\StructType\\ImportShipmentReturnImageResponse',
            'ImportShipmentForce' => '\\StructType\\ImportShipmentForce',
            'ImportShipmentForceResponse' => '\\StructType\\ImportShipmentForceResponse',
            'ImportAddress' => '\\StructType\\ImportAddress',
            'ArrayOfAddressRow' => '\\ArrayType\\ArrayOfAddressRow',
            'ImportAddressResponse' => '\\StructType\\ImportAddressResponse',
            'PerformEndOfDay' => '\\StructType\\PerformEndOfDay',
            'PerformEndOfDayResponse' => '\\StructType\\PerformEndOfDayResponse',
            'PerformEndOfDaySelect' => '\\StructType\\PerformEndOfDaySelect',
            'PerformEndOfDaySelectResponse' => '\\StructType\\PerformEndOfDaySelectResponse',
            'ArrayOfErrorRow' => '\\ArrayType\\ArrayOfErrorRow',
            'ErrorRow' => '\\StructType\\ErrorRow',
            'GetAllowedServicesForCountry' => '\\StructType\\GetAllowedServicesForCountry',
            'GetAllowedServicesForCountryResponse' => '\\StructType\\GetAllowedServicesForCountryResponse',
            'ArrayOfCarrierServiceRow' => '\\ArrayType\\ArrayOfCarrierServiceRow',
            'CarrierServiceRow' => '\\StructType\\CarrierServiceRow',
            'ArrayOfAdditionalInformationResult' => '\\ArrayType\\ArrayOfAdditionalInformationResult',
            'AdditionalInformationResult' => '\\StructType\\AdditionalInformationResult',
            'CancelShipments' => '\\StructType\\CancelShipments',
            'ArrayOfCancelShipmentRow' => '\\ArrayType\\ArrayOfCancelShipmentRow',
            'CancelShipmentRow' => '\\StructType\\CancelShipmentRow',
            'CancelShipmentsResponse' => '\\StructType\\CancelShipmentsResponse',
            'ArrayOfCancelShipmentResult' => '\\ArrayType\\ArrayOfCancelShipmentResult',
            'CancelShipmentResult' => '\\StructType\\CancelShipmentResult',
            'ArrayOfstring' => '\\ArrayType\\ArrayOfstring',
            'ArrayOfShipmentDocumentEntry' => '\\ArrayType\\ArrayOfShipmentDocumentEntry',
            'ShipmentDocumentEntry' => '\\StructType\\ShipmentDocumentEntry',
            'EntityBase' => '\\StructType\\EntityBase',
        );
    }
}
