io.github.robothy.sdwebui.sdk.models.results.Image2ImageResult 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 io.github.robothy.sdwebui.sdk.models.options.Image2ImageOptions;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.List;
@Data
@NoArgsConstructor
public class Image2ImageResult {
@JsonProperty("images")
private List images;
@JsonProperty("parameters")
private Image2ImageOptions parameters;
@JsonProperty("info")
private String info;
}