<?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(
            'Update' => '\\StructType\\Update',
            'LeadGegevens' => '\\StructType\\LeadGegevens',
            'UpdateResponse' => '\\StructType\\UpdateResponse',
            'ResultaatContainerOfBoolean' => '\\StructType\\ResultaatContainerOfBoolean',
            'ArrayOfString' => '\\ArrayType\\ArrayOfString',
            'AuthHeader' => '\\StructType\\AuthHeader',
            'Add' => '\\StructType\\Add',
            'AddResponse' => '\\StructType\\AddResponse',
            'ResultaatContainerOfInt32' => '\\StructType\\ResultaatContainerOfInt32',
            'Delete' => '\\StructType\\Delete',
            'DeleteResponse' => '\\StructType\\DeleteResponse',
            'GetRelatieIDByEmailadres' => '\\StructType\\GetRelatieIDByEmailadres',
            'GetRelatieIDByEmailadresResponse' => '\\StructType\\GetRelatieIDByEmailadresResponse',
            'ResultaatContainerOfRelatieIDGegevensLijst' => '\\StructType\\ResultaatContainerOfRelatieIDGegevensLijst',
            'RelatieIDGegevensLijst' => '\\StructType\\RelatieIDGegevensLijst',
            'ArrayOfRelatieIDGegevens' => '\\ArrayType\\ArrayOfRelatieIDGegevens',
            'RelatieIDGegevens' => '\\StructType\\RelatieIDGegevens',
        );
    }
}
