All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hubspot.chrome.devtools.client.core.systeminfo.GetInfoResult Maven / Gradle / Ivy

package com.hubspot.chrome.devtools.client.core.systeminfo;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;

public final class GetInfoResult {
  public GPUInfo gpu;

  public String modelName;

  public String modelVersion;

  public String commandLine;

  @JsonCreator
  GetInfoResult(@JsonProperty(value = "gpu", required = true) GPUInfo gpu,
      @JsonProperty(value = "modelName", required = true) String modelName,
      @JsonProperty(value = "modelVersion", required = true) String modelVersion,
      @JsonProperty(value = "commandLine", required = true) String commandLine) {
    this.gpu = gpu;
    this.modelName = modelName;
    this.modelVersion = modelVersion;
    this.commandLine = commandLine;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy