Readonly troublesReadonly troubleSummary status string representing the highest priority trouble. Returns a human-readable status or 'OK' if no troubles exist.
Readonly troublesTroubles organized by their type property. Useful for filtering and categorized display of issues.
const errorTroubles = model.troublesByType['ERROR'] || [];
const warningTroubles = model.troublesByType['WARNING'] || [];
Array of troubles directly related to this model. Troubles are typically sorted by rank (highest priority first).