UNPKG

opennms

Version:

Client API for the OpenNMS network monitoring platform

17 lines (14 loc) 313 B
/** * Time series column. * @module OnmsFlowSeriesColumn */ export class OnmsFlowSeriesColumn { /** label */ public label: string; /** direction */ public ingress: boolean; constructor(label: string, ingress: boolean) { this.label = label; this.ingress = ingress; } }