Java class for anonymous complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType>
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="totalRegistros" type="{http://www.w3.org/2001/XMLSchema}long"/>
<element name="modulosPossiveis" type="{http://www.softplan.com.br/unj/schema/adv}simpleDtoType" maxOccurs="unbounded" minOccurs="0"/>
<element ref="{http://www.softplan.com.br/unj/schema/adv}cadastroTipoWs" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
| name | data type | type | namespace | min/max occurs | description |
|---|---|---|---|---|---|
| totalRegistros | long | element | 1/1 | ||
| modulosPossiveis | list of simpleDtoType | element | 0/unbounded | ||
| cadastroTipoWs | list of CadastroTipoWs (Anonymous) | element | ns1 | 0/unbounded |
Example
<cadastroTipoConsultaWs xmlns="http://www.softplan.com.br/unj/schema/adv">
<totalRegistros xmlns="">...</totalRegistros>
<modulosPossiveis xmlns="">
<chave>...</chave>
<valor>...</valor>
</modulosPossiveis>
<cadastroTipoWs>
<codigoCadastroTipo xmlns="">...</codigoCadastroTipo>
<descricao xmlns="">...</descricao>
<flagPossuiModulo xmlns="">...</flagPossuiModulo>
<flagPossuiArrendatario xmlns="">...</flagPossuiArrendatario>
<modulos xmlns="">
<chave>...</chave>
<valor>...</valor>
</modulos>
</cadastroTipoWs>
</cadastroTipoConsultaWs>