opennms
Version:
Client API for the OpenNMS network monitoring platform
21 lines (16 loc) • 435 B
text/typescript
/**
* Represents basic OpenNMS flow information about node.
* @category Model
*/
export class OnmsFlowExporterSummary {
/** node unique identifier */
public id?: number;
/** node foreign source */
public foreignSource?: string;
/** node foreign ID */
public foreignId?: string;
/** node label */
public label?: string;
/** the categories the node is in */
public categories?: string[];
}