StableDiffusionSamplerRaw

@Serializable
data class StableDiffusionSamplerRaw(val name: String? = null, val aliases: List<String>? = null, val options: Map<String, String>? = null)(source)

Carries StableDiffusionSamplerRaw data through the SDAI network layer.

Author

Dmitriy Moroz

Constructors

Link copied to clipboard
constructor(name: String? = null, aliases: List<String>? = null, options: Map<String, String>? = null)

Properties

Link copied to clipboard
@SerialName(value = "aliases")
val aliases: List<String>?

Exposes the aliases 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.

Link copied to clipboard
@SerialName(value = "options")
val options: Map<String, String>?

Exposes the options value used by the SDAI network layer.