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 | type | namespace | min/max occurs | description |
---|---|---|---|---|---|
codigoCadastroTipo | long | element | 0/1 | ||
descricao | string | element | 0/1 | ||
flagPossuiModulo | boolean | element | 1/1 | ||
flagPossuiArrendatario | boolean | element | 1/1 | ||
modulos | list of simpleDtoType | element | 0/unbounded |
Example
<cadastroTipoWs xmlns="http://www.softplan.com.br/unj/schema/adv"> <codigoCadastroTipo xmlns="">...</codigoCadastroTipo> <descricao xmlns="">...</descricao> <flagPossuiModulo xmlns="">...</flagPossuiModulo> <flagPossuiArrendatario xmlns="">...</flagPossuiArrendatario> <modulos xmlns=""> <chave>...</chave> <valor>...</valor> </modulos> </cadastroTipoWs>