Global Type: bpmTaskInfoType
General Description
BPM task info
Name | Type | Attributes | Description |
---|---|---|---|
id | xs:string | required once | Identifier of the task |
assignee | xs:string | required once | Assignee of the task |
weight | xs:integer | required once | Weigth of the task |
status | xs:string | optional | Status of the task |
<xs:complexType name="bpmTaskInfoType">
<xs:annotation>
<xs:documentation>
<![CDATA[BPM task info]]>
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="id" type="xs:string">
<xs:annotation>
<xs:documentation>
<![CDATA[Identifier of the task]]>
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="assignee" type="xs:string">
<xs:annotation>
<xs:documentation>
<![CDATA[Assignee of the task]]>
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="weight" type="xs:integer">
<xs:annotation>
<xs:documentation>
<![CDATA[Weigth of the task]]>
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="status" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>
<![CDATA[Status of the task]]>
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>