<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;?php

namespace juniper;

/**
 * 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(
            'GetCatalogueService' =&gt; '\\juniper\\StructType\\GetCatalogueService',
            'CatalogueDataRQ' =&gt; '\\juniper\\StructType\\CatalogueDataRQ',
            'LoginData' =&gt; '\\juniper\\StructType\\LoginData',
            'ArrayOfParamType' =&gt; '\\juniper\\ArrayType\\ArrayOfParamType',
            'ParamType' =&gt; '\\juniper\\StructType\\ParamType',
            'ArrayOfDataType' =&gt; '\\juniper\\ArrayType\\ArrayOfDataType',
            'DataType' =&gt; '\\juniper\\StructType\\DataType',
            'GetCatalogueServiceResponse' =&gt; '\\juniper\\StructType\\GetCatalogueServiceResponse',
            'CatalogueDataRS' =&gt; '\\juniper\\StructType\\CatalogueDataRS',
            'ArrayOfErrorType' =&gt; '\\juniper\\ArrayType\\ArrayOfErrorType',
            'ErrorType' =&gt; '\\juniper\\StructType\\ErrorType',
            'ArrayOfWarningType' =&gt; '\\juniper\\ArrayType\\ArrayOfWarningType',
            'WarningType' =&gt; '\\juniper\\StructType\\WarningType',
            'ArrayOfDataResult' =&gt; '\\juniper\\ArrayType\\ArrayOfDataResult',
            'DataResult' =&gt; '\\juniper\\StructType\\DataResult',
            'ArrayOfElementType' =&gt; '\\juniper\\ArrayType\\ArrayOfElementType',
            'ElementType' =&gt; '\\juniper\\StructType\\ElementType',
        );
    }
}
</pre></body></html>