opennms
Version:
Client API for the OpenNMS network monitoring platform
13 lines (10 loc) • 395 B
text/typescript
import {OnmsFlowSnmpInterface} from './OnmsFlowSnmpInterface';
import {OnmsFlowExporterSummary} from './OnmsFlowExporterSummary';
/**
* Represents OpenNMS flow information about a node and its interfaces.
* @category Model
*/
export class OnmsFlowExporter extends OnmsFlowExporterSummary {
/** a collection of interface information */
public interfaces?: OnmsFlowSnmpInterface[];
}