incidentId property

int incidentId

Incident ID.

This is a caller supplied foreign key that can be used to associate output incidents with input incidents.

Implementation

int get incidentId {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_Incident_getIncidentId(
      _handle,
      errorHandler,
    );
  });
}
void incidentId=(int value)

Implementation

set incidentId(int value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_Incident_setIncidentId(
      _handle,
      value,
      errorHandler,
    );
  });
}