<?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(
            'WSCGFVIR3TInput' => '\\StructType\\WSCGFVIR3TInput',
            'CONTRAT' => '\\StructType\\CONTRAT',
            'BENEFICIAIRE' => '\\StructType\\BENEFICIAIRE',
            'ArrayOfBENEFICIAIRE' => '\\ArrayType\\ArrayOfBENEFICIAIRE',
            'LIENSPROJET' => '\\StructType\\LIENSPROJET',
            'ArrayOfLIENSPROJET' => '\\ArrayType\\ArrayOfLIENSPROJET',
            'wscgfvir3tResponse' => '\\StructType\\Wscgfvir3tResponse',
            'wscgfvir3t_XML' => '\\StructType\\Wscgfvir3t_XML',
            'wscgfvir3t_XMLResponse' => '\\StructType\\Wscgfvir3t_XMLResponse',
            'wscgfvir3t' => '\\StructType\\Wscgfvir3t',
            'WSCGFVIR3TResult' => '\\StructType\\WSCGFVIR3TResult',
            'TARIFS' => '\\StructType\\TARIFS',
        );
    }
}
