Java class for USAddress complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="USAddress">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="state" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="zip" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
</sequence>
<attribute name="country" type="{http://www.w3.org/2001/XMLSchema}NMTOKEN" fixed="US" />
</restriction>
</complexContent>
</complexType>
|