<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',
            'HelloWorldResponse' =&gt; '\\StructType\\HelloWorldResponse',
            'getProduct' =&gt; '\\StructType\\GetProduct',
            'getProductResponse' =&gt; '\\StructType\\GetProductResponse',
            'getProductResult' =&gt; '\\StructType\\GetProductResult',
            'getAuftrag' =&gt; '\\StructType\\GetAuftrag',
            'getAuftragResponse' =&gt; '\\StructType\\GetAuftragResponse',
            'getAuftragResult' =&gt; '\\StructType\\GetAuftragResult',
            'getAuftragBySalesorderDetailId' =&gt; '\\StructType\\GetAuftragBySalesorderDetailId',
            'getAuftragBySalesorderDetailIdResponse' =&gt; '\\StructType\\GetAuftragBySalesorderDetailIdResponse',
            'getAuftragBySalesorderDetailIdResult' =&gt; '\\StructType\\GetAuftragBySalesorderDetailIdResult',
            'getAuftragByDate' =&gt; '\\StructType\\GetAuftragByDate',
            'getAuftragByDateResponse' =&gt; '\\StructType\\GetAuftragByDateResponse',
            'getAuftragByDateResult' =&gt; '\\StructType\\GetAuftragByDateResult',
            'setEventnrToOrderline' =&gt; '\\StructType\\SetEventnrToOrderline',
            'setEventnrToOrderlineResponse' =&gt; '\\StructType\\SetEventnrToOrderlineResponse',
            'deleteEvenetnrFromOrderline' =&gt; '\\StructType\\DeleteEvenetnrFromOrderline',
            'deleteEvenetnrFromOrderlineResponse' =&gt; '\\StructType\\DeleteEvenetnrFromOrderlineResponse',
            'getContactDatas' =&gt; '\\StructType\\GetContactDatas',
            'getContactDatasResponse' =&gt; '\\StructType\\GetContactDatasResponse',
            'getContactDatasResult' =&gt; '\\StructType\\GetContactDatasResult',
            'getContactDatasByName' =&gt; '\\StructType\\GetContactDatasByName',
            'getContactDatasByNameResponse' =&gt; '\\StructType\\GetContactDatasByNameResponse',
            'getContactDatasByNameResult' =&gt; '\\StructType\\GetContactDatasByNameResult',
            'getContactDatasByFirsAndLastName' =&gt; '\\StructType\\GetContactDatasByFirsAndLastName',
            'getContactDatasByFirsAndLastNameResponse' =&gt; '\\StructType\\GetContactDatasByFirsAndLastNameResponse',
            'getContactDatasByFirsAndLastNameResult' =&gt; '\\StructType\\GetContactDatasByFirsAndLastNameResult',
            'getContactDataByUid' =&gt; '\\StructType\\GetContactDataByUid',
            'getContactDataByUidResponse' =&gt; '\\StructType\\GetContactDataByUidResponse',
            'getContactDataByUidResult' =&gt; '\\StructType\\GetContactDataByUidResult',
            'getProductByName' =&gt; '\\StructType\\GetProductByName',
            'getProductByNameResponse' =&gt; '\\StructType\\GetProductByNameResponse',
            'getProductByNameResult' =&gt; '\\StructType\\GetProductByNameResult',
            'getProductById' =&gt; '\\StructType\\GetProductById',
            'getProductByIdResponse' =&gt; '\\StructType\\GetProductByIdResponse',
            'getProductByIdResult' =&gt; '\\StructType\\GetProductByIdResult',
            'getProductIdByAuftragId' =&gt; '\\StructType\\GetProductIdByAuftragId',
            'getProductIdByAuftragIdResponse' =&gt; '\\StructType\\GetProductIdByAuftragIdResponse',
            'getProductIdByAuftragIdResult' =&gt; '\\StructType\\GetProductIdByAuftragIdResult',
        );
    }
}
</pre></body></html>