Отримання статусу розпорядження OperationState
# Опис методу
# XSD-схема відповіді
<?xml version="1.0" encoding="utf-8"?>
<xs:schema elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="OPERATION_STATE_XML" nillable="true" type="OPERATION_STATE_XML" />
<xs:complexType name="OPERATION_STATE_XML">
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="1" name="OPERATION_STATE_LIST" type="ArrayOfOperationState" />
</xs:sequence>
</xs:complexType>
<xs:complexType name="ArrayOfOperationState">
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="unbounded" name="OPERATION_STATE" nillable="true" type="OperationState" />
</xs:sequence>
</xs:complexType>
<xs:complexType name="OperationState">
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="1" name="Id" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="StateCode" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="StateText" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:schema>
# Приклад відповіді
<?xml version="1.0" encoding="utf-8"?>
<OPERATION_STATE_XML xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<OPERATION_STATE_LIST>
<OPERATION_STATE>
<StateCode>Finish</StateCode>
<StateText>Завершено</StateText>
</OPERATION_STATE>
</OPERATION_STATE_LIST>
</OPERATION_STATE_XML>