KtorStableDiffusionModelRaw

@Serializable
data class KtorStableDiffusionModelRaw(val title: String? = null, val modelName: String? = null, val hash: String? = null, val sha256: String? = null, val filename: String? = null, val config: String? = null)(source)

Carries KtorStableDiffusionModelRaw data through the SDAI network layer.

Author

Dmitriy Moroz

Constructors

Link copied to clipboard
constructor(title: String? = null, modelName: String? = null, hash: String? = null, sha256: String? = null, filename: String? = null, config: String? = null)

Properties

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

Exposes the config value used by the SDAI network layer.

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

Exposes the filename value used by the SDAI network layer.

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

Exposes the hash value used by the SDAI network layer.

Link copied to clipboard
@SerialName(value = "model_name")
val modelName: String?

Exposes the modelName value used by the SDAI network layer.

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

Exposes the sha256 value used by the SDAI network layer.

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

Exposes the title value used by the SDAI network layer.