<?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(
            'TicketCreate' => '\\StructType\\TicketCreate',
            'TicketCreateResponse' => '\\StructType\\TicketCreateResponse',
            'OTRS_TicketCreate_Ticket' => '\\StructType\\OTRS_TicketCreate_Ticket',
            'OTRS_PendingTime' => '\\StructType\\OTRS_PendingTime',
            'OTRS_Article' => '\\StructType\\OTRS_Article',
            'OTRS_DynamicField' => '\\StructType\\OTRS_DynamicField',
            'OTRS_Attachment' => '\\StructType\\OTRS_Attachment',
            'OTRS_Error' => '\\StructType\\OTRS_Error',
            'TicketUpdate' => '\\StructType\\TicketUpdate',
            'TicketUpdateResponse' => '\\StructType\\TicketUpdateResponse',
            'OTRS_TicketUpdate_Ticket' => '\\StructType\\OTRS_TicketUpdate_Ticket',
            'TicketGet' => '\\StructType\\TicketGet',
            'TicketGetResponse' => '\\StructType\\TicketGetResponse',
            'OTRS_TicketGetResponse_Ticket' => '\\StructType\\OTRS_TicketGetResponse_Ticket',
            'OTRS_TicketGetResponse_Article' => '\\StructType\\OTRS_TicketGetResponse_Article',
            'OTRS_TicketGetResponse_Attachment' => '\\StructType\\OTRS_TicketGetResponse_Attachment',
            'TicketSearch' => '\\StructType\\TicketSearch',
            'TicketSearchResponse' => '\\StructType\\TicketSearchResponse',
            'OTRS_TicketSearch_DynamicField' => '\\StructType\\OTRS_TicketSearch_DynamicField',
            'OTRS_TicketSearch_TicketFlag' => '\\StructType\\OTRS_TicketSearch_TicketFlag',
            'SessionCreate' => '\\StructType\\SessionCreate',
            'SessionCreateResponse' => '\\StructType\\SessionCreateResponse',
            'TicketHistoryGet' => '\\StructType\\TicketHistoryGet',
            'TicketHistoryGetResponse' => '\\StructType\\TicketHistoryGetResponse',
            'OTRS_TicketHistoryGetResponse_TicketHistory' => '\\StructType\\OTRS_TicketHistoryGetResponse_TicketHistory',
            'OTRS_TicketHistoryGetResponse_TicketHistoryElement' => '\\StructType\\OTRS_TicketHistoryGetResponse_TicketHistoryElement',
            'SessionGet' => '\\StructType\\SessionGet',
            'SessionGetResponse' => '\\StructType\\SessionGetResponse',
            'OTRS_SessionGetResponse_SessionData' => '\\StructType\\OTRS_SessionGetResponse_SessionData',
        );
    }
}
