Web Services Developer's Guide → Web Services API Reference → SBM Application Web Services → Common Types → Selection-Type
Selection-Type indicates the type of field selection.
| Name | Type | Description |
|---|---|---|
| SINGLE-SELECTION | string | Indicates that the field is a Single Selection field type. |
| BINARY-SELECTION | string | Indicates that the field is a Binary/Trinary field type. |
| MULTI-SELECTION | string | Indicates that the field is a Multi-Selection field type. |
The Selection-Type helps identify the type of field selection that is returned in the FieldSelectionHolder response. For more information, see FieldSelectionsHolder.
The following XML shows Selection-Type in the <ae:type> element as seen in the GetFieldSelectionsResponse.
<ae:GetFieldSelectionsResponse>
<ae:return>
<ae:field xsi:type="ae:FieldIdentifier">
<ae:displayName>Active/Inactive</ae:displayName>
<ae:id>80</ae:id>
<ae:uuid>e90174d9-76fa-4ac2-b2bd-13944626c685</ae:uuid>
<ae:dbName>ACTIVEINACTIVE</ae:dbName>
</ae:field>
<ae:type>BINARY-SELECTION</ae:type>
<ae:attribute>BINARY-ATTRIBUTE-LISTBOX</ae:attribute>
<ae:option>
<ae:id>
<ae:displayName>Active</ae:displayName>
<ae:id>0</ae:id>
</ae:id>
<ae:orderIndex>0</ae:orderIndex>
</ae:option>
<ae:option>
<ae:id>
<ae:displayName>Inactive</ae:displayName>
<ae:id>1</ae:id>
</ae:id>
<ae:orderIndex>1</ae:orderIndex>
</ae:option>
</ae:return>
Copyright © 2007–2018 Serena Software, Inc., a Micro Focus company. All rights reserved.