<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;?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(
            'CodigoCNESType' =&gt; '\\StructType\\CodigoCNESType',
            'CNPJType' =&gt; '\\StructType\\CNPJType',
            'FiltroPesquisaEstabelecimentoSaudeType' =&gt; '\\StructType\\FiltroPesquisaEstabelecimentoSaudeType',
            'FiltroPesquisaPrecadastroCnesType' =&gt; '\\StructType\\FiltroPesquisaPrecadastroCnesType',
            'TipoUnidadeType' =&gt; '\\StructType\\TipoUnidadeType',
            'PaginacaoType' =&gt; '\\StructType\\PaginacaoType',
            'localizacaoType' =&gt; '\\StructType\\LocalizacaoType',
            'FiltroLocalizacaoEstabelecimentoSaudeType' =&gt; '\\StructType\\FiltroLocalizacaoEstabelecimentoSaudeType',
            'CodigoUnidadeType' =&gt; '\\StructType\\CodigoUnidadeType',
            'NomeJuridicoType' =&gt; '\\StructType\\NomeJuridicoType',
            'UFType' =&gt; '\\StructType\\UFType',
            'MunicipioType' =&gt; '\\StructType\\MunicipioType',
            'PaisType' =&gt; '\\StructType\\PaisType',
            'TipoLogradouroType' =&gt; '\\StructType\\TipoLogradouroType',
            'BairroType' =&gt; '\\StructType\\BairroType',
            'CEPType' =&gt; '\\StructType\\CEPType',
            'EnderecoType' =&gt; '\\StructType\\EnderecoType',
            'EsferaAdministrativaType' =&gt; '\\StructType\\EsferaAdministrativaType',
            'CPFType' =&gt; '\\StructType\\CPFType',
            'NomeCompletoType' =&gt; '\\StructType\\NomeCompletoType',
            'DiretorType' =&gt; '\\StructType\\DiretorType',
            'TipoTelefoneType' =&gt; '\\StructType\\TipoTelefoneType',
            'TelefoneType' =&gt; '\\StructType\\TelefoneType',
            'EmailType' =&gt; '\\StructType\\EmailType',
            'DadosGeraisEstabelecimentoSaudeType' =&gt; '\\StructType\\DadosGeraisEstabelecimentoSaudeType',
            'MensagemType' =&gt; '\\StructType\\MensagemType',
            'MSFalha' =&gt; '\\StructType\\MSFalha',
            'ResultadoLocalizacaoEstabelecimentoSaudeType' =&gt; '\\StructType\\ResultadoLocalizacaoEstabelecimentoSaudeType',
            'ResultadosLocalizacaoEstabelecimentoSaudeType' =&gt; '\\StructType\\ResultadosLocalizacaoEstabelecimentoSaudeType',
            'TipoNaturezaJuridicaType' =&gt; '\\StructType\\TipoNaturezaJuridicaType',
            'NaturezaJuridicaType' =&gt; '\\StructType\\NaturezaJuridicaType',
            'DadosPreCadastroCNESType' =&gt; '\\StructType\\DadosPreCadastroCNESType',
            'requestConsultarEstabelecimentoSaude' =&gt; '\\StructType\\RequestConsultarEstabelecimentoSaude',
            'responseConsultarEstabelecimentoSaude' =&gt; '\\StructType\\ResponseConsultarEstabelecimentoSaude',
            'requestLocalizarEstabelecimentoSaude' =&gt; '\\StructType\\RequestLocalizarEstabelecimentoSaude',
            'responseLocalizarEstabelecimentoSaude' =&gt; '\\StructType\\ResponseLocalizarEstabelecimentoSaude',
            'requestConsultarPrecadastroCNES' =&gt; '\\StructType\\RequestConsultarPrecadastroCNES',
            'responseConsultarPrecadastroCNES' =&gt; '\\StructType\\ResponseConsultarPrecadastroCNES',
        );
    }
}
</pre></body></html>