<< Click to Display Table of Contents >>
SequenceOfBACnetRecipient |
This XML representation of complex data is used by the following objects/properties:
•device.restartNotificationRecipients
•device.timeSynchronizationRecipients
•device.utcTimeSynchronizationRecipients
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns="http://www.elipse.com.br/drivers/BACnet" xmlns:mstns="http://www.elipse.com.br/drivers/BACnet" elementFormDefault="qualified" targetNamespace="http://www.elipse.com.br/drivers/BACnet" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:complexType name="SequenceOfBACnetRecipient">
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="unbounded" name="BACnetRecipient" type="BACnetRecipient" />
</xs:sequence>
</xs:complexType>
<xs:element name="Value" type="SequenceOfBACnetRecipient" />
</xs:schema>
Example 1:
<?xml version="1.0" encoding="utf-8" ?>
<Value xmlns="http://www.elipse.com.br/drivers/BACnet">
<SequenceOfBACnetRecipient />
</Value>
Example 2:
<?xml version="1.0" encoding="utf-8" ?>
<Value xmlns="http://www.elipse.com.br/drivers/BACnet">
<SequenceOfBACnetRecipient>
<BACnetRecipient>
<Device>device-501</Device>
</BACnetRecipient>
<BACnetRecipient>
<Device>device-502</Device>
</BACnetRecipient>
<BACnetRecipient>
<Device>device-503</Device>
</BACnetRecipient>
</SequenceOfBACnetRecipient>
</Value>