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

52 lines
1.1 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
2021-09-08 10:54:51 +00:00
public final 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;
2021-01-13 07:31:07 +00:00
public Integer viosId = 0;
public String sharedEthernetAdapterId = "";
@FirstElement
public Number receivedPackets = 0.0;
@FirstElement
public Number sentPackets = 0.0;
@FirstElement
public Number droppedPackets = 0.0;
@FirstElement
public Number sentBytes = 0.0;
@FirstElement
public Number receivedBytes = 0.0;
@FirstElement
public Number receivedPhysicalPackets = 0.0;
@FirstElement
public Number sentPhysicalPackets = 0.0;
@FirstElement
public Number droppedPhysicalPackets = 0.0;
@FirstElement
public Number sentPhysicalBytes = 0.0;
@FirstElement
public Number receivedPhysicalBytes = 0.0;
@FirstElement
public Number transferredBytes = 0.0;
@FirstElement
public Number transferredPhysicalBytes = 0.0;
}