Ticon Data Type

Java class for Ticon complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="Ticon">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <any processContents='lax' maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
       <attribute name="resource" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="size" use="required" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" />
       <anyAttribute/>
     </restriction>
   </complexContent>
 </complexType>
 

Properties
name data type description
any array of object
size number
resource string
otherAttributes map of string

Example

{
  "any" : [ { }, { } ],
  "size" : 12345,
  "resource" : "...",
  "otherAttributes" : {
    "property1" : "...",
    "property2" : "..."
  }
}