hmci/src/main/java/biz/nellemann/hmci/pcm/VirtualEthernetAdapter.java

52 lines
1.0 KiB
Java
Raw Normal View History

package biz.nellemann.hmci.pcm;
import com.serjltt.moshi.adapters.FirstElement;
2021-01-13 07:31:07 +00:00
public class VirtualEthernetAdapter {
2021-01-13 07:31:07 +00:00
public String physicalLocation = "";
public Integer vlanId = 0;
public Integer vswitchId = 0;
public Boolean isPortVlanId = false;
public Integer viosId = 0;
public String sharedEthernetAdapterId = "";
@FirstElement
2021-01-13 07:31:07 +00:00
public Number receivedPackets = 0;
@FirstElement
2021-01-13 07:31:07 +00:00
public Number sentPackets = 0;
@FirstElement
2021-01-13 07:31:07 +00:00
public Number droppedPackets = 0;
@FirstElement
2021-01-13 07:31:07 +00:00
public Number sentBytes = 0;
@FirstElement
2021-01-13 07:31:07 +00:00
public Number receivedBytes = 0;
@FirstElement
2021-01-13 07:31:07 +00:00
public Number receivedPhysicalPackets = 0;
@FirstElement
2021-01-13 07:31:07 +00:00
public Number sentPhysicalPackets = 0;
@FirstElement
2021-01-13 07:31:07 +00:00
public Number droppedPhysicalPackets = 0;
@FirstElement
2021-01-13 07:31:07 +00:00
public Number sentPhysicalBytes = 0;
@FirstElement
2021-01-13 07:31:07 +00:00
public Number receivedPhysicalBytes = 0;
@FirstElement
2021-01-13 07:31:07 +00:00
public Number transferredBytes = 0;
@FirstElement
2021-01-13 07:31:07 +00:00
public Number transferredPhysicalBytes = 0;
}