<?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(
            'UploadScheduledFlights' => '\\StructType\\UploadScheduledFlights',
            'ArrayOfFlight' => '\\ArrayType\\ArrayOfFlight',
            'Flight' => '\\StructType\\Flight',
            'ArrayOfLoad' => '\\ArrayType\\ArrayOfLoad',
            'Load' => '\\StructType\\Load',
            'ArrayOfAirport' => '\\ArrayType\\ArrayOfAirport',
            'Airport' => '\\StructType\\Airport',
            'ArrayOfCrew' => '\\ArrayType\\ArrayOfCrew',
            'Crew' => '\\StructType\\Crew',
            'ArrayOfPassThrough' => '\\ArrayType\\ArrayOfPassThrough',
            'PassThrough' => '\\StructType\\PassThrough',
            'ArrayOfPax' => '\\ArrayType\\ArrayOfPax',
            'Pax' => '\\StructType\\Pax',
            'UploadScheduledFlightsResponse' => '\\StructType\\UploadScheduledFlightsResponse',
            'FlightChanges' => '\\StructType\\FlightChanges',
            'ArrayOfFlightTouched' => '\\ArrayType\\ArrayOfFlightTouched',
            'FlightTouched' => '\\StructType\\FlightTouched',
            'FlightValidationFault' => '\\StructType\\FlightValidationFault',
            'GetScheduledFlights' => '\\StructType\\GetScheduledFlights',
            'GetScheduledFlightsResponse' => '\\StructType\\GetScheduledFlightsResponse',
            'FlightCollection' => '\\StructType\\FlightCollection',
            'PPSCustomerIdentification' => '\\StructType\\PPSCustomerIdentification',
        );
    }
}
