package biz.nellemann.hmci.dto.json; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import java.util.ArrayList; import java.util.List; @JsonIgnoreProperties(ignoreUnknown = true) public final class Network { public List clientLpars = new ArrayList<>(); public List genericAdapters = new ArrayList<>(); public List sharedAdapters = new ArrayList<>(); public List virtualEthernetAdapters = new ArrayList<>(); public List sriovAdapters = new ArrayList<>(); public List sriovLogicalPorts = new ArrayList<>(); }