Structure IsegItem

typedef struct IsegItem {
 char object[FULLY_QUALIFIED_OBJECT_SIZE]; // line.module.channel.item 0.0.1.VoltageSet
 char value[VALUE_SIZE];
 char quality[QUALITY_SIZE];
 char timeStampLastRefreshed[TIME_SIZE];
 char timeStampLastChanged[TIME_SIZE];
} IsegItem;


object:
 The objects representing the fully qualified names of the data points from the connected
 hardware. That means such an object specifies the hierarchical sequence to address a
 specific data point in the connected system (interface line, device and channel address).
 Example "0.0.0.Status.VoltageMeasure"

value:
 The value of that item.

quality:
 The quality of the item.

timeStampLastRefreshed:
 The UTC time of the last item refresh by the isegHAL (lower hardware abstrction layer).
 Time in seconds separated by a dot from the milliseconds and
 the tenth part of milliseconds since 1970-01-01 00:00:00 UTC.

timeStampLastChanged:
 The UTC time of the last item changement by the isegHAL
 (lower hardware abstrction layer). Time in seconds separated by a dot from the milliseconds
 and the tenth part of milliseconds since 1970-01-01 00:00:00 UTC.