<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(
            'ECommerceOrderLineDiscount' =&gt; '\\StructType\\ECommerceOrderLineDiscount',
            'ECommerceOrderLine' =&gt; '\\StructType\\ECommerceOrderLine',
            'ECommerceOrderPayment' =&gt; '\\StructType\\ECommerceOrderPayment',
            'ECommerceOrderHeader' =&gt; '\\StructType\\ECommerceOrderHeader',
            'B2FCommerceOrder' =&gt; '\\StructType\\B2FCommerceOrder',
            'ECommerceOrderFunctionLine' =&gt; '\\StructType\\ECommerceOrderFunctionLine',
            'ECommerceOrderFunctionHeader' =&gt; '\\StructType\\ECommerceOrderFunctionHeader',
            'B2FCommerceOrderFunction' =&gt; '\\StructType\\B2FCommerceOrderFunction',
            'CreateECommerceOrder' =&gt; '\\StructType\\CreateECommerceOrder',
            'CreateECommerceOrder_Result' =&gt; '\\StructType\\CreateECommerceOrder_Result',
            'ProcessECommerceOrderFunction' =&gt; '\\StructType\\ProcessECommerceOrderFunction',
            'ProcessECommerceOrderFunction_Result' =&gt; '\\StructType\\ProcessECommerceOrderFunction_Result',
            'IsECommerceOrderLineReadyForPartialShipment' =&gt; '\\StructType\\IsECommerceOrderLineReadyForPartialShipment',
            'IsECommerceOrderLineReadyForPartialShipment_Result' =&gt; '\\StructType\\IsECommerceOrderLineReadyForPartialShipment_Result',
        );
    }
}
</pre></body></html>