<?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(
            'CreatePdfAvviso' => '\\StructType\\CreatePdfAvviso',
            'RichiestaCreaAvvisoPdf' => '\\StructType\\RichiestaCreaAvvisoPdf',
            'GeneratorPdfBytesAuthenticatedRequestBase' => '\\StructType\\GeneratorPdfBytesAuthenticatedRequestBase',
            'CreatePdfAvvisoResponse' => '\\StructType\\CreatePdfAvvisoResponse',
            'RispostaCreaAvvisoPdf' => '\\StructType\\RispostaCreaAvvisoPdf',
            'SoapFaultErroreInterno' => '\\StructType\\SoapFaultErroreInterno',
            'SoapFault' => '\\StructType\\SoapFault',
            'CreatePdfRT' => '\\StructType\\CreatePdfRT',
            'CreatePdfRTResponse' => '\\StructType\\CreatePdfRTResponse',
            'RispostaCreaRTPdf' => '\\StructType\\RispostaCreaRTPdf',
            'RichiestaCreaRTPdf' => '\\StructType\\RichiestaCreaRTPdf',
        );
    }
}
