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="codigoCadastroTipo" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
<element name="descricao" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
<element name="flagPossuiModulo" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
<element name="flagPossuiArrendatario" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
<element name="modulos" type="{http://www.softplan.com.br/unj/schema/adv}simpleDtoType" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
| name | data type | description |
|---|---|---|
| codigoCadastroTipo | number | |
| descricao | string | |
| flagPossuiModulo | boolean | |
| flagPossuiArrendatario | boolean | |
| modulos | array of SimpleDtoType |
Example
{
"codigoCadastroTipo" : 12345,
"descricao" : "...",
"flagPossuiModulo" : true,
"flagPossuiArrendatario" : true,
"modulos" : [ {
"chave" : 12345,
"valor" : "..."
}, {
"chave" : 12345,
"valor" : "..."
} ]
}