<?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(
            'importPackagesCV1' => '\\Structs\\ImportPackagesCV1',
            'authDataV1' => '\\Structs\\AuthDataV1',
            'importPackagesCV1Response' => '\\Structs\\ImportPackagesCV1Response',
            'DPDAppServiceException' => '\\Structs\\DPDAppServiceException',
            'SchemaValidationException' => '\\Structs\\SchemaValidationException',
            'DPDAppAuthorizationException' => '\\Structs\\DPDAppAuthorizationException',
            'DPDAppAuthenticationException' => '\\Structs\\DPDAppAuthenticationException',
            'importPackagesXV1' => '\\Structs\\ImportPackagesXV1',
            'importPackagesXV1Response' => '\\Structs\\ImportPackagesXV1Response',
        );
    }
}
