BACnetActionList

<< Click to Display Table of Contents >>

 

BACnetActionList

This XML representation of complex data is used internally by other XMLs supported by the driver.

XML Schema

<xs:complexType name="BACnetActionList">
  <xs:sequence>
    <xs:element name="Action" type="SequenceOfBACnetActionCommand" />
  </xs:sequence>
</xs:complexType>

Examples

Example 1:

<BACnetActionList>
  <Action />
</BACnetActionList>

Example 2:

<BACnetActionList>
  <Action>
    <BACnetActionCommand>
      <DeviceIdentifier>device-501</DeviceIdentifier>
      <ObjectIdentifier>device-502</ObjectIdentifier>
      <PropertyIdentifier>action</PropertyIdentifier>
      <PropertyArrayIndex>1237</PropertyArrayIndex>
      <PropertyValue>
        <Boolean>true</Boolean>
      </PropertyValue>
      <Priority>1238</Priority>
      <PostDelay>1239</PostDelay>
      <QuitOnFailure>true</QuitOnFailure>
      <WriteSuccessful>true</WriteSuccessful>
    </BACnetActionCommand>
    <BACnetActionCommand>
      <DeviceIdentifier>device-507</DeviceIdentifier>
      <ObjectIdentifier>device-508</ObjectIdentifier>
      <PropertyIdentifier>all</PropertyIdentifier>
      <PropertyArrayIndex>1243</PropertyArrayIndex>
      <PropertyValue>
        <Boolean>true</Boolean>
      </PropertyValue>
      <Priority>1244</Priority>
      <PostDelay>1245</PostDelay>
      <QuitOnFailure>true</QuitOnFailure>
      <WriteSuccessful>true</WriteSuccessful>
    </BACnetActionCommand>
    <BACnetActionCommand>
      <DeviceIdentifier>device-513</DeviceIdentifier>
      <ObjectIdentifier>device-514</ObjectIdentifier>
      <PropertyIdentifier>bias</PropertyIdentifier>
      <PropertyArrayIndex>1249</PropertyArrayIndex>
      <PropertyValue>
        <Boolean>true</Boolean>
      </PropertyValue>
      <Priority>1250</Priority>
      <PostDelay>1251</PostDelay>
      <QuitOnFailure>true</QuitOnFailure>
      <WriteSuccessful>true</WriteSuccessful>
    </BACnetActionCommand>
  </Action>
</BACnetActionList>

Was this page useful?