hmci/src/main/groovy/biz/nellemann/hmci/pcm/SharedAdapter.groovy

20 lines
403 B
Groovy
Raw Normal View History

2020-08-18 11:49:48 +00:00
package biz.nellemann.hmci.pcm
2020-08-08 11:24:48 +00:00
import groovy.transform.ToString
@ToString
class SharedAdapter {
String id
String type
String physicalLocation
List<BigDecimal> receivedPackets
List<BigDecimal> sentPackets
List<BigDecimal> droppedPackets
List<BigDecimal> sentBytes
List<BigDecimal> receivedBytes
List<BigDecimal> transferredBytes
List<String> bridgedAdapters
}