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 | description |
|---|---|---|
| totalRegistros | number | |
| modulosPossiveis | array of SimpleDtoType | |
| cadastroTipoWs | array of CadastroTipoWs |
Example
{
"totalRegistros" : 12345,
"modulosPossiveis" : [ {
"chave" : 12345,
"valor" : "..."
}, {
"chave" : 12345,
"valor" : "..."
} ],
"cadastroTipoWs" : [ {
"codigoCadastroTipo" : 12345,
"descricao" : "...",
"flagPossuiModulo" : true,
"flagPossuiArrendatario" : true,
"modulos" : [ {
"chave" : 12345,
"valor" : "..."
}, {
"chave" : 12345,
"valor" : "..."
} ]
}, {
"codigoCadastroTipo" : 12345,
"descricao" : "...",
"flagPossuiModulo" : true,
"flagPossuiArrendatario" : true,
"modulos" : [ {
"chave" : 12345,
"valor" : "..."
}, {
"chave" : 12345,
"valor" : "..."
} ]
} ]
}