<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(
            'ArrayOfstring' =&gt; '\\ArrayType\\ArrayOfstring',
            'EnumerationOfint' =&gt; '\\StructType\\EnumerationOfint',
            'EnumerationBase' =&gt; '\\StructType\\EnumerationBase',
            'CustomerIntegrationModel' =&gt; '\\StructType\\CustomerIntegrationModel',
            'AccountModel' =&gt; '\\StructType\\AccountModel',
            'ArrayOfAccountAddress' =&gt; '\\ArrayType\\ArrayOfAccountAddress',
            'AccountAddress' =&gt; '\\StructType\\AccountAddress',
            'Unit' =&gt; '\\StructType\\Unit',
            'LovOrganization' =&gt; '\\StructType\\LovOrganization',
            'LovUnitGroup' =&gt; '\\StructType\\LovUnitGroup',
            'LovUnitType' =&gt; '\\StructType\\LovUnitType',
            'HintCity' =&gt; '\\StructType\\HintCity',
            'HintCountry' =&gt; '\\StructType\\HintCountry',
            'ArrayOfHintTown' =&gt; '\\ArrayType\\ArrayOfHintTown',
            'HintTown' =&gt; '\\StructType\\HintTown',
            'LovAddressType' =&gt; '\\StructType\\LovAddressType',
            'LovAuditCreatedVersion' =&gt; '\\StructType\\LovAuditCreatedVersion',
            'LovIdentityType' =&gt; '\\StructType\\LovIdentityType',
            'LovTaxExemptReason' =&gt; '\\StructType\\LovTaxExemptReason',
            'LovAccountType' =&gt; '\\StructType\\LovAccountType',
            'LovCustomerType' =&gt; '\\StructType\\LovCustomerType',
            'LovIntegrationType' =&gt; '\\StructType\\LovIntegrationType',
            'OrderInfoHeader' =&gt; '\\StructType\\OrderInfoHeader',
            'ArrayOfOrderInfoHeaderService' =&gt; '\\ArrayType\\ArrayOfOrderInfoHeaderService',
            'OrderInfoHeaderService' =&gt; '\\StructType\\OrderInfoHeaderService',
            'Service' =&gt; '\\StructType\\Service',
            'LovServiceType' =&gt; '\\StructType\\LovServiceType',
            'OrderInfoViewModel' =&gt; '\\StructType\\OrderInfoViewModel',
            'ArrayOfExtProductModel' =&gt; '\\ArrayType\\ArrayOfExtProductModel',
            'ExtProductModel' =&gt; '\\StructType\\ExtProductModel',
            'AddressInfoViewModel' =&gt; '\\StructType\\AddressInfoViewModel',
            'CustomerInfo' =&gt; '\\StructType\\CustomerInfo',
            'ResultInfo' =&gt; '\\StructType\\ResultInfo',
            'MPOrderInfoViewModel' =&gt; '\\StructType\\MPOrderInfoViewModel',
            'ArrayOfMPExtProductModel' =&gt; '\\ArrayType\\ArrayOfMPExtProductModel',
            'MPExtProductModel' =&gt; '\\StructType\\MPExtProductModel',
            'MPAddressInfoViewModel' =&gt; '\\StructType\\MPAddressInfoViewModel',
            'ArrayOfOrderInfoResponseModel' =&gt; '\\ArrayType\\ArrayOfOrderInfoResponseModel',
            'OrderInfoResponseModel' =&gt; '\\StructType\\OrderInfoResponseModel',
            'OrderHeaderModel' =&gt; '\\StructType\\OrderHeaderModel',
            'SaveOrder' =&gt; '\\StructType\\SaveOrder',
            'SaveOrderResponse' =&gt; '\\StructType\\SaveOrderResponse',
            'ArasMPOrder' =&gt; '\\StructType\\ArasMPOrder',
            'ArasMPOrderResponse' =&gt; '\\StructType\\ArasMPOrderResponse',
            'UpdateOrder' =&gt; '\\StructType\\UpdateOrder',
            'UpdateOrderResponse' =&gt; '\\StructType\\UpdateOrderResponse',
            'ArasMPOrderUpdate' =&gt; '\\StructType\\ArasMPOrderUpdate',
            'ArasMPOrderUpdateResponse' =&gt; '\\StructType\\ArasMPOrderUpdateResponse',
            'DeleteOrder' =&gt; '\\StructType\\DeleteOrder',
            'DeleteOrderResponse' =&gt; '\\StructType\\DeleteOrderResponse',
            'ArasMPOrderDelete' =&gt; '\\StructType\\ArasMPOrderDelete',
            'ArasMPOrderDeleteResponse' =&gt; '\\StructType\\ArasMPOrderDeleteResponse',
            'GetOrderListByDate' =&gt; '\\StructType\\GetOrderListByDate',
            'GetOrderListByDateResponse' =&gt; '\\StructType\\GetOrderListByDateResponse',
            'MPGetOrderListByDate' =&gt; '\\StructType\\MPGetOrderListByDate',
            'MPGetOrderListByDateResponse' =&gt; '\\StructType\\MPGetOrderListByDateResponse',
            'GetOrderListByOrderCode' =&gt; '\\StructType\\GetOrderListByOrderCode',
            'GetOrderListByOrderCodeResponse' =&gt; '\\StructType\\GetOrderListByOrderCodeResponse',
            'ArasMPOrderGetOrderListByOrderCode' =&gt; '\\StructType\\ArasMPOrderGetOrderListByOrderCode',
            'ArasMPOrderGetOrderListByOrderCodeResponse' =&gt; '\\StructType\\ArasMPOrderGetOrderListByOrderCodeResponse',
            'SaveOrderHeader' =&gt; '\\StructType\\SaveOrderHeader',
            'SaveOrderHeaderResponse' =&gt; '\\StructType\\SaveOrderHeaderResponse',
            'SaveOrderHeaderMPOrder' =&gt; '\\StructType\\SaveOrderHeaderMPOrder',
            'SaveOrderHeaderMPOrderResponse' =&gt; '\\StructType\\SaveOrderHeaderMPOrderResponse',
        );
    }
}
</pre></body></html>