<?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(
            'addAttachmentByCSV' => '\\StructType\\AddAttachmentByCSV',
            'addAttachmentByCSVResponse' => '\\StructType\\AddAttachmentByCSVResponse',
            'createDraft' => '\\StructType\\CreateDraft',
            'createDraftResponse' => '\\StructType\\CreateDraftResponse',
            'deleteAttachment' => '\\StructType\\DeleteAttachment',
            'deleteAttachmentResponse' => '\\StructType\\DeleteAttachmentResponse',
            'getAttachmentList' => '\\StructType\\GetAttachmentList',
            'getAttachmentListResponse' => '\\StructType\\GetAttachmentListResponse',
            'getDraft' => '\\StructType\\GetDraft',
            'getDraftResponse' => '\\StructType\\GetDraftResponse',
            'getDraftList' => '\\StructType\\GetDraftList',
            'getDraftListResponse' => '\\StructType\\GetDraftListResponse',
            'issueNotification' => '\\StructType\\IssueNotification',
            'issueNotificationResponse' => '\\StructType\\IssueNotificationResponse',
            'issueRegisterNotification' => '\\StructType\\IssueRegisterNotification',
            'issueRegisterNotificationResponse' => '\\StructType\\IssueRegisterNotificationResponse',
            'updateDraft' => '\\StructType\\UpdateDraft',
            'updateDraftResponse' => '\\StructType\\UpdateDraftResponse',
            'ParamAddAttachmentByCSV' => '\\StructType\\ParamAddAttachmentByCSV',
            'ParamCreateDraft' => '\\StructType\\ParamCreateDraft',
            'ResultCreateDraft' => '\\StructType\\ResultCreateDraft',
            'ParamDeleteAttachment' => '\\StructType\\ParamDeleteAttachment',
            'ResultDeleteAttachment' => '\\StructType\\ResultDeleteAttachment',
            'ParamGetAttachmentList' => '\\StructType\\ParamGetAttachmentList',
            'ResultGetAttachmentList' => '\\StructType\\ResultGetAttachmentList',
            'ParamGetDraft' => '\\StructType\\ParamGetDraft',
            'ResultGetDraft' => '\\StructType\\ResultGetDraft',
            'ParamGetDraftList' => '\\StructType\\ParamGetDraftList',
            'ResultGetDraftList' => '\\StructType\\ResultGetDraftList',
            'ParamIssueNotification' => '\\StructType\\ParamIssueNotification',
            'ResultIssueNotification' => '\\StructType\\ResultIssueNotification',
            'ParamIssueRegisterNotification' => '\\StructType\\ParamIssueRegisterNotification',
            'ResultIssueRegisterNotification' => '\\StructType\\ResultIssueRegisterNotification',
            'ParamUpdateDraft' => '\\StructType\\ParamUpdateDraft',
            'ParamBase' => '\\StructType\\ParamBase',
            'Result' => '\\StructType\\Result',
            'Draft' => '\\StructType\\Draft',
            'Communication' => '\\StructType\\Communication',
            'DraftReceiver' => '\\StructType\\DraftReceiver',
            'Data' => '\\StructType\\Data',
            'DocumentAttachmentSearch' => '\\StructType\\DocumentAttachmentSearch',
            'DocumentAttachment' => '\\StructType\\DocumentAttachment',
            'DraftSearch' => '\\StructType\\DraftSearch',
            'Notification' => '\\StructType\\Notification',
            'NotificationReceiver' => '\\StructType\\NotificationReceiver',
            'NotificationSearch' => '\\StructType\\NotificationSearch',
        );
    }
}
