<?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(
            'ByNameDataSet' => '\\StructType\\ByNameDataSet',
            'ByName' => '\\StructType\\ByName',
            'QueryByName_DataSet' => '\\StructType\\QueryByName_DataSet',
            'QueryByName' => '\\StructType\\QueryByName',
            'AddInteger' => '\\StructType\\AddInteger',
            'AddIntegerResponse' => '\\StructType\\AddIntegerResponse',
            'DivideInteger' => '\\StructType\\DivideInteger',
            'DivideIntegerResponse' => '\\StructType\\DivideIntegerResponse',
            'FindPerson' => '\\StructType\\FindPerson',
            'FindPersonResponse' => '\\StructType\\FindPersonResponse',
            'Employee' => '\\StructType\\Employee',
            'Person' => '\\StructType\\Person',
            'Address' => '\\StructType\\Address',
            'ArrayOfFavoriteColorsItemString' => '\\ArrayType\\ArrayOfFavoriteColorsItemString',
            'GetByName' => '\\StructType\\GetByName',
            'GetByNameResponse' => '\\StructType\\GetByNameResponse',
            'DataSet' => '\\StructType\\DataSet',
            'GetDataSetByName' => '\\StructType\\GetDataSetByName',
            'GetDataSetByNameResponse' => '\\StructType\\GetDataSetByNameResponse',
            'GetListByName' => '\\StructType\\GetListByName',
            'GetListByNameResponse' => '\\StructType\\GetListByNameResponse',
            'ArrayOfPersonIdentificationPersonIdentification' => '\\ArrayType\\ArrayOfPersonIdentificationPersonIdentification',
            'PersonIdentification' => '\\StructType\\PersonIdentification',
            'LookupCity' => '\\StructType\\LookupCity',
            'LookupCityResponse' => '\\StructType\\LookupCityResponse',
            'Mission' => '\\StructType\\Mission',
            'MissionResponse' => '\\StructType\\MissionResponse',
            'QueryByNameResponse' => '\\StructType\\QueryByNameResponse',
        );
    }
}
