<?php

namespace TaxyDelete;

/**
 * Class which returns the class map definition
 * @package TaxyDelete
 */
class TaxyDeleteClassMap
{
    /**
     * 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(
            'DELETE' => '\\TaxyDelete\\TaxyDeleteStruct\\TaxyDeleteDELETE',
            'user_details' => '\\TaxyDelete\\TaxyDeleteStruct\\TaxyDeleteUser_details',
            'DELETEResponse' => '\\TaxyDelete\\TaxyDeleteStruct\\TaxyDeleteDELETEResponse',
        );
    }
}
