io.github.robothy.sdwebui.sdk.models.results.ExtraImageResult 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.Data;
@Data
public class ExtraImageResult {
/**
* HTML info,A series of HTML tags containing the process info.
*/
@JsonProperty("html_info")
private String htmlInfo;
/**
* Image,The generated image in base64 format.
*/
@JsonProperty("image")
private String image;
}