<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;?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(
            'BusinessDataTypeIsNotSupported' =&gt; '\\StructType\\BusinessDataTypeIsNotSupported',
            'InvalidContent' =&gt; '\\StructType\\InvalidContent',
            'ValidationError' =&gt; '\\StructType\\ValidationError',
            'MessagePrimaryContent' =&gt; '\\StructType\\MessagePrimaryContent',
            'MessageReference' =&gt; '\\StructType\\MessageReference',
            'RequestReference' =&gt; '\\StructType\\RequestReference',
            'Timestamp' =&gt; '\\StructType\\Timestamp',
            'Void' =&gt; '\\StructType\\_Void',
            'SmevFault' =&gt; '\\StructType\\SmevFault',
            'GetResponseRequest' =&gt; '\\StructType\\GetResponseRequest',
            'GetResponseResponse' =&gt; '\\StructType\\GetResponseResponse',
            'ResponseMessage' =&gt; '\\StructType\\ResponseMessage',
            'MessageMetadata' =&gt; '\\StructType\\MessageMetadata',
            'Response' =&gt; '\\StructType\\Response',
            'SendRequestRequest' =&gt; '\\StructType\\SendRequestRequest',
            'SendRequestResponse' =&gt; '\\StructType\\SendRequestResponse',
            'Sender' =&gt; '\\StructType\\Sender',
            'SenderProvidedGetResponseData' =&gt; '\\StructType\\SenderProvidedGetResponseData',
            'SenderProvidedRequestData' =&gt; '\\StructType\\SenderProvidedRequestData',
            'SenderProvidedResponseData' =&gt; '\\StructType\\SenderProvidedResponseData',
            'RequestRejected' =&gt; '\\StructType\\RequestRejected',
            'RequestRejectedReason' =&gt; '\\StructType\\RequestRejectedReason',
            'AdditionalInformation' =&gt; '\\StructType\\AdditionalInformation',
            'GetResponse' =&gt; '\\StructType\\GetResponse',
            'SendRequest' =&gt; '\\StructType\\SendRequest',
        );
    }
}
</pre></body></html>