<?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(
            'getPassword' => '\\StructType\\GetPassword',
            'getPasswordResponse' => '\\StructType\\GetPasswordResponse',
            'OrderEntry' => '\\StructType\\OrderEntry',
            'OrderEntryResponse' => '\\StructType\\OrderEntryResponse',
            'orderEntryParam' => '\\StructType\\OrderEntryParam',
            'orderEntryParamResponse' => '\\StructType\\OrderEntryParamResponse',
            'spreadOrderEntry' => '\\StructType\\SpreadOrderEntry',
            'spreadOrderEntryResponse' => '\\StructType\\SpreadOrderEntryResponse',
            'spreadOrderEntryParam' => '\\StructType\\SpreadOrderEntryParam',
            'spreadOrderEntryParamResponse' => '\\StructType\\SpreadOrderEntryParamResponse',
            'switchOrderEntry' => '\\StructType\\SwitchOrderEntry',
            'switchOrderEntryResponse' => '\\StructType\\SwitchOrderEntryResponse',
            'switchOrderEntryParam' => '\\StructType\\SwitchOrderEntryParam',
            'switchOrderEntryParamResponse' => '\\StructType\\SwitchOrderEntryParamResponse',
            'sipOrderEntry' => '\\StructType\\SipOrderEntry',
            'sipOrderEntryResponse' => '\\StructType\\SipOrderEntryResponse',
            'sipOrderEntryParam' => '\\StructType\\SipOrderEntryParam',
            'sipOrderEntryParamResponse' => '\\StructType\\SipOrderEntryParamResponse',
            'xsipOrderEntry' => '\\StructType\\XsipOrderEntry',
            'xsipOrderEntryResponse' => '\\StructType\\XsipOrderEntryResponse',
            'xsipOrderEntryParam' => '\\StructType\\XsipOrderEntryParam',
            'xsipOrderEntryParamResponse' => '\\StructType\\XsipOrderEntryParamResponse',
            'OrderData' => '\\StructType\\OrderData',
            'SpreadOrder' => '\\StructType\\SpreadOrder',
            'SwitchOrder' => '\\StructType\\SwitchOrder',
            'SipOrder' => '\\StructType\\SipOrder',
            'XsipOrder' => '\\StructType\\XsipOrder',
        );
    }
}
