<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(
            'ListTypes' =&gt; '\\StructType\\ListTypes',
            'ListTypesResponse' =&gt; '\\StructType\\ListTypesResponse',
            'Types' =&gt; '\\StructType\\Types',
            'ArrayOfItem' =&gt; '\\ArrayType\\ArrayOfItem',
            'Item' =&gt; '\\StructType\\Item',
            'ArrayOfString' =&gt; '\\ArrayType\\ArrayOfString',
            'ArrayOfCloudConnectProvider' =&gt; '\\ArrayType\\ArrayOfCloudConnectProvider',
            'CloudConnectProvider' =&gt; '\\StructType\\CloudConnectProvider',
            'ArrayOfInt' =&gt; '\\ArrayType\\ArrayOfInt',
            'GetNNIAgreements' =&gt; '\\StructType\\GetNNIAgreements',
            'GetNNIAgreementsResponse' =&gt; '\\StructType\\GetNNIAgreementsResponse',
            'ArrayOfNNIAgreement' =&gt; '\\ArrayType\\ArrayOfNNIAgreement',
            'NNIAgreement' =&gt; '\\StructType\\NNIAgreement',
            'FindQuotation' =&gt; '\\StructType\\FindQuotation',
            'FindQuotationResponse' =&gt; '\\StructType\\FindQuotationResponse',
            'Quotation' =&gt; '\\StructType\\Quotation',
            'CircuitDetails' =&gt; '\\StructType\\CircuitDetails',
            'ArrayOfPortAndBandwidth' =&gt; '\\ArrayType\\ArrayOfPortAndBandwidth',
            'PortAndBandwidth' =&gt; '\\StructType\\PortAndBandwidth',
            'ArrayOfLocationIdentifier' =&gt; '\\ArrayType\\ArrayOfLocationIdentifier',
            'LocationIdentifier' =&gt; '\\StructType\\LocationIdentifier',
            'ArrayOfCloudConnectRequest' =&gt; '\\ArrayType\\ArrayOfCloudConnectRequest',
            'CloudConnectRequest' =&gt; '\\StructType\\CloudConnectRequest',
            'ArrayOfQuotationLine' =&gt; '\\ArrayType\\ArrayOfQuotationLine',
            'QuotationLine' =&gt; '\\StructType\\QuotationLine',
            'GenerateQuotation' =&gt; '\\StructType\\GenerateQuotation',
            'GenerateQuotationResponse' =&gt; '\\StructType\\GenerateQuotationResponse',
            'GetNNICapablePoPs' =&gt; '\\StructType\\GetNNICapablePoPs',
            'GetNNICapablePoPsResponse' =&gt; '\\StructType\\GetNNICapablePoPsResponse',
            'ArrayOfNNICapablePoP' =&gt; '\\ArrayType\\ArrayOfNNICapablePoP',
            'NNICapablePoP' =&gt; '\\StructType\\NNICapablePoP',
            'Address' =&gt; '\\StructType\\Address',
            'GetEthernetPoPs' =&gt; '\\StructType\\GetEthernetPoPs',
            'GetEthernetPoPsResponse' =&gt; '\\StructType\\GetEthernetPoPsResponse',
            'ArrayOfEthernetPoP' =&gt; '\\ArrayType\\ArrayOfEthernetPoP',
            'EthernetPoP' =&gt; '\\StructType\\EthernetPoP',
            'GetLocationCapabilities' =&gt; '\\StructType\\GetLocationCapabilities',
            'GetLocationCapabilitiesResponse' =&gt; '\\StructType\\GetLocationCapabilitiesResponse',
            'ArrayOfLocation' =&gt; '\\ArrayType\\ArrayOfLocation',
            'Location' =&gt; '\\StructType\\Location',
            'GetOpticalPoPs' =&gt; '\\StructType\\GetOpticalPoPs',
            'GetOpticalPoPsResponse' =&gt; '\\StructType\\GetOpticalPoPsResponse',
            'ArrayOfOpticalPoP' =&gt; '\\ArrayType\\ArrayOfOpticalPoP',
            'OpticalPoP' =&gt; '\\StructType\\OpticalPoP',
        );
    }
}
</pre></body></html>