<< Clique para Mostrar o Sumário >>
BACnetDestination |
Esta representação de dados complexos via XML é utilizada internamente em outros XMLs suportados pelo 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>
Exemplo 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>