hmci/src/main/groovy/biz/nellemann/hmci/pojo/GenericAdapter.groovy

19 lines
372 B
Groovy

package biz.nellemann.hmci.pojo
import groovy.transform.ToString
@ToString
class GenericAdapter {
String id
String type
String physicalLocation
List<BigDecimal> receivedPackets
List<BigDecimal> sentPackets
List<BigDecimal> droppedPackets
List<BigDecimal> sentBytes
List<BigDecimal> receivedBytes
List<BigDecimal> transferredBytes
}