io.github.robothy.sdwebui.sdk.models.results.SdModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdwebui-java-sdk Show documentation
Show all versions of sdwebui-java-sdk Show documentation
Stable Diffusion Web UI Java SDK
The newest version!
package io.github.robothy.sdwebui.sdk.models.results;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Getter;
@Getter
public class SdModel {
@JsonProperty("title")
private String title;
@JsonProperty("model_name")
private String modelName;
@JsonProperty("hash")
private String hash;
@JsonProperty("sha256")
private String sha256;
@JsonProperty("filename")
private String filename;
@JsonProperty("config")
private String config;
}