<?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(
            'getConversationByIdRequest' => '\\StructType\\GetConversationByIdRequest',
            'userConversationLoadingResponse' => '\\StructType\\UserConversationLoadingResponse',
            'baseResponse' => '\\StructType\\BaseResponse',
            'userConversationLoadingType' => '\\StructType\\UserConversationLoadingType',
            'participants' => '\\StructType\\Participants',
            'contextDto' => '\\StructType\\ContextDto',
            'productDto' => '\\StructType\\ProductDto',
            'saleDto' => '\\StructType\\SaleDto',
            'participantDto' => '\\StructType\\ParticipantDto',
            'messageDto' => '\\StructType\\MessageDto',
            'errorType' => '\\StructType\\ErrorType_1',
            'postConversationRequest' => '\\StructType\\PostConversationRequest',
            'userConversationPostingResponse' => '\\StructType\\UserConversationPostingResponse',
            'putMessageRequest' => '\\StructType\\PutMessageRequest',
            'userMessageAddingResponse' => '\\StructType\\UserMessageAddingResponse',
            'markAsUnreadRequest' => '\\StructType\\MarkAsUnreadRequest',
            'userConversationMarkingReadResponse' => '\\StructType\\UserConversationMarkingReadResponse',
            'markAsReadRequest' => '\\StructType\\MarkAsReadRequest',
            'deleteConversationRequest' => '\\StructType\\DeleteConversationRequest',
            'userConversationDeletingResponse' => '\\StructType\\UserConversationDeletingResponse',
            'getMessagesRequest' => '\\StructType\\GetMessagesRequest',
            'userMessageLoadingResponse' => '\\StructType\\UserMessageLoadingResponse',
            'messages' => '\\StructType\\Messages',
            'getConversationsRequest' => '\\StructType\\GetConversationsRequest',
            'userConversationsLoadingResponse' => '\\StructType\\UserConversationsLoadingResponse',
            'conversations' => '\\StructType\\Conversations',
            'getConversationsCountRequest' => '\\StructType\\GetConversationsCountRequest',
            'userConversationCountResponse' => '\\StructType\\UserConversationCountResponse',
            'userConversationCountTypeList' => '\\StructType\\UserConversationCountTypeList',
            'userConversationCountType' => '\\StructType\\UserConversationCountType',
            'deleteConversationsRequest' => '\\StructType\\DeleteConversationsRequest',
            'userSubjectLoadingResponse' => '\\StructType\\UserSubjectLoadingResponse',
            'subjects' => '\\StructType\\Subjects',
            'subject' => '\\StructType\\Subject',
        );
    }
}
