<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(
            'HelloWorld' =&gt; '\\StructType\\HelloWorld',
            'RetailContext' =&gt; '\\StructType\\RetailContext',
            'HelloWorldResponse' =&gt; '\\StructType\\HelloWorldResponse',
            'GetCustomerIdByReference' =&gt; '\\StructType\\GetCustomerIdByReference',
            'GetCustomerIdByReferenceResponse' =&gt; '\\StructType\\GetCustomerIdByReferenceResponse',
            'GetCustomerDetail' =&gt; '\\StructType\\GetCustomerDetail',
            'GetCustomerDetailResponse' =&gt; '\\StructType\\GetCustomerDetailResponse',
            'CustomerQueryData' =&gt; '\\StructType\\CustomerQueryData',
            'CustomerData' =&gt; '\\StructType\\CustomerData',
            'CustomerDataBase' =&gt; '\\StructType\\CustomerDataBase',
            'AddressDataType' =&gt; '\\StructType\\AddressDataType',
            'EmailDataType' =&gt; '\\StructType\\EmailDataType',
            'PhoneDataType' =&gt; '\\StructType\\PhoneDataType',
            'ArrayOfUserDefinedBoolean' =&gt; '\\ArrayType\\ArrayOfUserDefinedBoolean',
            'UserDefinedBoolean' =&gt; '\\StructType\\UserDefinedBoolean',
            'UserDefinedDataType' =&gt; '\\StructType\\UserDefinedDataType',
            'ArrayOfUserDefinedDate' =&gt; '\\ArrayType\\ArrayOfUserDefinedDate',
            'UserDefinedDate' =&gt; '\\StructType\\UserDefinedDate',
            'ArrayOfUserDefinedText' =&gt; '\\ArrayType\\ArrayOfUserDefinedText',
            'UserDefinedText' =&gt; '\\StructType\\UserDefinedText',
            'ArrayOfUserDefinedValue' =&gt; '\\ArrayType\\ArrayOfUserDefinedValue',
            'UserDefinedValue' =&gt; '\\StructType\\UserDefinedValue',
            'BirthDateDataType' =&gt; '\\StructType\\BirthDateDataType',
            'ArrayOfUserField' =&gt; '\\ArrayType\\ArrayOfUserField',
            'UserField' =&gt; '\\StructType\\UserField',
            'SearchCustomerIds' =&gt; '\\StructType\\SearchCustomerIds',
            'CustomerSearchDataType' =&gt; '\\StructType\\CustomerSearchDataType',
            'NationalityDataType' =&gt; '\\StructType\\NationalityDataType',
            'SearchCustomerIdsResponse' =&gt; '\\StructType\\SearchCustomerIdsResponse',
            'ArrayOfCustomerQueryData' =&gt; '\\ArrayType\\ArrayOfCustomerQueryData',
            'AddNewCustomer' =&gt; '\\StructType\\AddNewCustomer',
            'CustomerInsertData' =&gt; '\\StructType\\CustomerInsertData',
            'CustomerInputData' =&gt; '\\StructType\\CustomerInputData',
            'AddNewCustomerResponse' =&gt; '\\StructType\\AddNewCustomerResponse',
            'UpdateCustomer' =&gt; '\\StructType\\UpdateCustomer',
            'UpdateCustomerResponse' =&gt; '\\StructType\\UpdateCustomerResponse',
            'CbpFaultDetail' =&gt; '\\StructType\\CbpFaultDetail',
            'BusinessFaultDetail' =&gt; '\\StructType\\BusinessFaultDetail',
            'ArrayOfstring' =&gt; '\\ArrayType\\ArrayOfstring',
        );
    }
}
</pre></body></html>