StableDiffusionScriptInfoRaw

@Serializable
data class StableDiffusionScriptInfoRaw(val name: String = "", val isAlwaysOn: Boolean = false, val isImg2Img: Boolean = false)(source)

Carries A1111 script-info metadata through the SDAI network layer.

Author

Dmitriy Moroz

Constructors

Link copied to clipboard
constructor(name: String = "", isAlwaysOn: Boolean = false, isImg2Img: Boolean = false)

Properties

Link copied to clipboard
@SerialName(value = "is_alwayson")
val isAlwaysOn: Boolean

Exposes the isAlwaysOn value used by the SDAI network layer.

Link copied to clipboard
@SerialName(value = "is_img2img")
val isImg2Img: Boolean

Exposes the isImg2Img value used by the SDAI network layer.

Link copied to clipboard
@SerialName(value = "name")
val name: String

Exposes the name value used by the SDAI network layer.