<?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(
            'ExecuteSP' => '\\StructType\\ExecuteSP',
            'ArrayOfString' => '\\ArrayType\\ArrayOfString',
            'ExecuteSPResponse' => '\\StructType\\ExecuteSPResponse',
            'ExecuteSPRecordSet' => '\\StructType\\ExecuteSPRecordSet',
            'ExecuteSPRecordSetResponse' => '\\StructType\\ExecuteSPRecordSetResponse',
            'RDETestConnection' => '\\StructType\\RDETestConnection',
            'RDETestConnectionResponse' => '\\StructType\\RDETestConnectionResponse',
            'InsertReceipt' => '\\StructType\\InsertReceipt',
            'InsertReceiptResponse' => '\\StructType\\InsertReceiptResponse',
            'VoidPaymentByLedgerID' => '\\StructType\\VoidPaymentByLedgerID',
            'VoidPaymentByLedgerIDResponse' => '\\StructType\\VoidPaymentByLedgerIDResponse',
            'VoidPaymentByReceiptID' => '\\StructType\\VoidPaymentByReceiptID',
            'VoidPaymentByReceiptIDResponse' => '\\StructType\\VoidPaymentByReceiptIDResponse',
            'IsPaymentPosted' => '\\StructType\\IsPaymentPosted',
            'IsPaymentPostedResponse' => '\\StructType\\IsPaymentPostedResponse',
            'IsExistingPayment' => '\\StructType\\IsExistingPayment',
            'IsExistingPaymentResponse' => '\\StructType\\IsExistingPaymentResponse',
            'GenerateSnapshot' => '\\StructType\\GenerateSnapshot',
            'GenerateSnapshotResponse' => '\\StructType\\GenerateSnapshotResponse',
            'UpdateSnapshot' => '\\StructType\\UpdateSnapshot',
            'UpdateSnapshotResponse' => '\\StructType\\UpdateSnapshotResponse',
            'UpdateEpiqCustomer' => '\\StructType\\UpdateEpiqCustomer',
            'UpdateEpiqCustomerResponse' => '\\StructType\\UpdateEpiqCustomerResponse',
            'RDETest' => '\\StructType\\RDETest',
            'RDETestResponse' => '\\StructType\\RDETestResponse',
            'UpdateCustomerProfile' => '\\StructType\\UpdateCustomerProfile',
            'BOCustomer' => '\\StructType\\BOCustomer',
            'BaseBO' => '\\StructType\\BaseBO',
            'UpdateCustomerProfileResponse' => '\\StructType\\UpdateCustomerProfileResponse',
            'CreateContactLog' => '\\StructType\\CreateContactLog',
            'BOContactLog' => '\\StructType\\BOContactLog',
            'CreateContactLogResponse' => '\\StructType\\CreateContactLogResponse',
            'CreateWorkOrder' => '\\StructType\\CreateWorkOrder',
            'BOWorkOrder' => '\\StructType\\BOWorkOrder',
            'CreateWorkOrderResponse' => '\\StructType\\CreateWorkOrderResponse',
            'CreateMailer' => '\\StructType\\CreateMailer',
            'BOMailer' => '\\StructType\\BOMailer',
            'CreateMailerResponse' => '\\StructType\\CreateMailerResponse',
            'GetFile' => '\\StructType\\GetFile',
            'BOFile' => '\\StructType\\BOFile',
            'GetFileResponse' => '\\StructType\\GetFileResponse',
        );
    }
}
