<?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',
            'RelatieGegevens' => '\\StructType\\RelatieGegevens',
            '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',
            'Get' => '\\StructType\\Get',
            'GetResponse' => '\\StructType\\GetResponse',
            'ResultaatContainerOfRelatieGegevens' => '\\StructType\\ResultaatContainerOfRelatieGegevens',
            'GetGUID' => '\\StructType\\GetGUID',
            'GetGUIDResponse' => '\\StructType\\GetGUIDResponse',
            'ResultaatContainerOfString' => '\\StructType\\ResultaatContainerOfString',
            'GetByEmailadres' => '\\StructType\\GetByEmailadres',
            'GetByEmailadresResponse' => '\\StructType\\GetByEmailadresResponse',
            'ResultaatContainerOfRelatieGegevensLijst' => '\\StructType\\ResultaatContainerOfRelatieGegevensLijst',
            'RelatieGegevensLijst' => '\\StructType\\RelatieGegevensLijst',
            'ArrayOfRelatieGegevens' => '\\ArrayType\\ArrayOfRelatieGegevens',
            'GetByDataDelenGUID' => '\\StructType\\GetByDataDelenGUID',
            'GetByDataDelenGUIDResponse' => '\\StructType\\GetByDataDelenGUIDResponse',
            'DocumentenCompleet' => '\\StructType\\DocumentenCompleet',
            'DocumentenCompleetResponse' => '\\StructType\\DocumentenCompleetResponse',
            'AddDocumentenChecklist' => '\\StructType\\AddDocumentenChecklist',
            'AddDocumentenChecklistResponse' => '\\StructType\\AddDocumentenChecklistResponse',
        );
    }
}
