<< Click to Display Table of Contents >>
BACnetDestination |
This XML representation of complex data is used internally by other XMLs supported by the driver.
<xs:complexType name="BACnetDestination">
<xs:sequence>
<xs:element name="ValidDays" type="BACnetDaysOfWeek" />
<xs:element name="FromTime" type="Time" />
<xs:element name="ToTime" type="Time" />
<xs:element name="Recipient" type="BACnetRecipient" />
<xs:element name="ProcessIdentifier" type="Unsigned32" />
<xs:element name="IssueConfirmedNotifications" type="Boolean" />
<xs:element name="Transitions" type="BACnetEventTransitionBits" />
</xs:sequence>
</xs:complexType>
Example 1:
<BACnetDestination>
<ValidDays>
<monday>true</monday>
<wednesday>true</wednesday>
<friday>true</friday>
<sunday>true</sunday>
</ValidDays>
<FromTime>22:39:15.980</FromTime>
<ToTime>22:39:15.980</ToTime>
<Recipient>
<Device>device-503</Device>
</Recipient>
<ProcessIdentifier>2348</ProcessIdentifier>
<IssueConfirmedNotifications>true</IssueConfirmedNotifications>
<Transitions>
<toOffnormal>true</toOffnormal>
<toNormal>true</toNormal>
</Transitions>
</BACnetDestination>