<?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(
            'obterEstoqueAtualMotos' => '\\StructType\\ObterEstoqueAtualMotos',
            'obterEstoqueAtualMotosResponse' => '\\StructType\\ObterEstoqueAtualMotosResponse',
            'ArrayOfAnuncioMotoWM' => '\\ArrayType\\ArrayOfAnuncioMotoWM',
            'AnuncioMotoWM' => '\\StructType\\AnuncioMotoWM',
            'ArrayOfOpcionalMotoNovaWM' => '\\ArrayType\\ArrayOfOpcionalMotoNovaWM',
            'OpcionalMotoNovaWM' => '\\StructType\\OpcionalMotoNovaWM',
            'ArrayOfOpcionalMotoUsadaWM' => '\\ArrayType\\ArrayOfOpcionalMotoUsadaWM',
            'OpcionalMotoUsadaWM' => '\\StructType\\OpcionalMotoUsadaWM',
            'incluirMoto' => '\\StructType\\IncluirMoto',
            'incluirMotoResponse' => '\\StructType\\IncluirMotoResponse',
            'alterarMoto' => '\\StructType\\AlterarMoto',
            'alterarMotoResponse' => '\\StructType\\AlterarMotoResponse',
            'excluirMoto' => '\\StructType\\ExcluirMoto',
            'excluirMotoResponse' => '\\StructType\\ExcluirMotoResponse',
            'incluirFotoMoto' => '\\StructType\\IncluirFotoMoto',
            'incluirFotoMotoResponse' => '\\StructType\\IncluirFotoMotoResponse',
            'FotoAnuncioMotoWM' => '\\StructType\\FotoAnuncioMotoWM',
            'excluirFotoMoto' => '\\StructType\\ExcluirFotoMoto',
            'excluirFotoMotoResponse' => '\\StructType\\ExcluirFotoMotoResponse',
            'incluirVideo' => '\\StructType\\IncluirVideo',
            'incluirVideoResponse' => '\\StructType\\IncluirVideoResponse',
            'VideoWM' => '\\StructType\\VideoWM',
            'excluirVideo' => '\\StructType\\ExcluirVideo',
            'excluirVideoResponse' => '\\StructType\\ExcluirVideoResponse',
            'publicarFotoanimacaoMoto' => '\\StructType\\PublicarFotoanimacaoMoto',
            'publicarFotoanimacaoMotoResponse' => '\\StructType\\PublicarFotoanimacaoMotoResponse',
            'FotoAnimacaoWM' => '\\StructType\\FotoAnimacaoWM',
            'desativarFotoanimacaoMoto' => '\\StructType\\DesativarFotoanimacaoMoto',
            'desativarFotoanimacaoMotoResponse' => '\\StructType\\DesativarFotoanimacaoMotoResponse',
            'FotosMoto' => '\\StructType\\FotosMoto',
            'FotosMotoResponse' => '\\StructType\\FotosMotoResponse',
            'ArrayOfFotosWM' => '\\ArrayType\\ArrayOfFotosWM',
            'FotosWM' => '\\StructType\\FotosWM',
            'ArrayOfDetalheFotoWM' => '\\ArrayType\\ArrayOfDetalheFotoWM',
            'DetalheFotoWM' => '\\StructType\\DetalheFotoWM',
            'AvalicaoMoto' => '\\StructType\\AvalicaoMoto',
            'AvalicaoMotoResponse' => '\\StructType\\AvalicaoMotoResponse',
            'ArrayOfAvaliacaoMotoWM' => '\\ArrayType\\ArrayOfAvaliacaoMotoWM',
            'AvaliacaoMotoWM' => '\\StructType\\AvaliacaoMotoWM',
            'TrocarModalidadeMoto' => '\\StructType\\TrocarModalidadeMoto',
            'TrocarModalidadeMotoResponse' => '\\StructType\\TrocarModalidadeMotoResponse',
            'ArrayOfAnuncioModalidadeWM' => '\\ArrayType\\ArrayOfAnuncioModalidadeWM',
            'AnuncioModalidadeWM' => '\\StructType\\AnuncioModalidadeWM',
        );
    }
}
