BACnetEventParameter_ChangeOfState

<< Clique para Mostrar o Sumário >>

 

BACnetEventParameter_ChangeOfState

Esta representação de dados complexos via XML é utilizada pelos seguintes objetos/propriedades:

eventEnrollment.eventParameters

Esquema XML

<?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="BACnetEventParameter_ChangeOfState">
    <xs:sequence>
      <xs:element name="TimeDelay" type="Unsigned" />
      <xs:element name="ListOfValues" type="SequenceOfBACnetPropertyStates" />
    </xs:sequence>
  </xs:complexType>
  <xs:element name="Value" type="BACnetEventParameter_ChangeOfState" />
</xs:schema>

Exemplos

Exemplo 1:

<?xml version="1.0" encoding="utf-8" ?>
<Value xmlns="http://www.elipse.com.br/drivers/BACnet">
  <BACnetEventParameter_ChangeOfState>
    <TimeDelay>1234</TimeDelay>
    <ListOfValues />
  </BACnetEventParameter_ChangeOfState>
</Value>

Exemplo 2:

<?xml version="1.0" encoding="utf-8" ?>
<Value xmlns="http://www.elipse.com.br/drivers/BACnet">
  <BACnetEventParameter_ChangeOfState>
    <TimeDelay>1235</TimeDelay>
    <ListOfValues>
      <BACnetPropertyStates>
        <BooleanValue>true</BooleanValue>
      </BACnetPropertyStates>
      <BACnetPropertyStates>
        <BooleanValue>true</BooleanValue>
      </BACnetPropertyStates>
      <BACnetPropertyStates>
        <BooleanValue>true</BooleanValue>
      </BACnetPropertyStates>
    </ListOfValues>
  </BACnetEventParameter_ChangeOfState>
</Value>

Esta página foi útil?