BACnetDeviceObjectPropertyValue

<< Clique para Mostrar o Sumário >>

 

BACnetDeviceObjectPropertyValue

Esta representação de dados complexos via XML é utilizada internamente em outros XMLs suportados pelo driver.

Esquema XML

<xs:complexType name="BACnetDeviceObjectPropertyValue">
  <xs:sequence>
    <xs:element name="DeviceIdentifier" type="BACnetObjectIdentifier" />
    <xs:element name="ObjectIdentifier" type="BACnetObjectIdentifier" />
    <xs:element name="PropertyIdentifier" type="BACnetPropertyIdentifier" />
    <xs:element minOccurs="0" name="PropertyArrayIndex" type="Unsigned" />
    <xs:element name="PropertyValue" type="Any" />
  </xs:sequence>
</xs:complexType>

Exemplos

Exemplo 1:

<BACnetDeviceObjectPropertyValue>
  <DeviceIdentifier>device-501</DeviceIdentifier>
  <ObjectIdentifier>device-502</ObjectIdentifier>
  <PropertyIdentifier>action</PropertyIdentifier>
  <PropertyArrayIndex>1237</PropertyArrayIndex>
  <PropertyValue>
    <Boolean>true</Boolean>
  </PropertyValue>
</BACnetDeviceObjectPropertyValue>

Exemplo 2:

<BACnetDeviceObjectPropertyValue>
  <DeviceIdentifier>device-505</DeviceIdentifier>
  <ObjectIdentifier>device-506</ObjectIdentifier>
  <PropertyIdentifier>alarmValue</PropertyIdentifier>
  <PropertyValue>
    <Boolean>true</Boolean>
  </PropertyValue>
</BACnetDeviceObjectPropertyValue>

Esta página foi útil?