Web Services Developer's Guide → Web Services API Reference → SBM Application Web Services → Responses → WorkflowState
The WorkflowState type holds details about a state in the graphical workflow. The WorkflowState type parameters are listed below.
| Name | Type | Description | 
|---|---|---|
| id | StateIdentifier | Holds identification information for a state. | 
| center | Point | The coordinate on which the state is centered. | 
| size | Size | The size of the state in the diagram. | 
| radius | integer | The radius of the state. | 
| extendedData | ExtendedData | Placeholder for future arguments. | 
The WorkflowState type completely describes the positioning and size of a state in the graphical workflow. For details on the graphical workflow, refer to Workflow.
The following XML snippet shows the WorkflowState type in the return element of the GetWorkflows response.
<ae:state>
   <ae:id xsi:type="ae:StateIdentifier">
       <ae:displayName>None</ae:displayName>
       <ae:id>0</ae:id>
       <ae:uuid/>
       <ae:internalName/>
       <ae:isClosed>false</ae:isClosed>
   </ae:id>
   <ae:center>
       <ae:x>63</ae:x>
       <ae:y>0</ae:y>
   </ae:center>
   <ae:size>
       <ae:width>63</ae:width>
       <ae:height>63</ae:height>
   </ae:size>
   <ae:radius>0</ae:radius>
</ae:state>
 
    Copyright © 2007–2019 Micro Focus or one of its affiliates. All rights reserved.