SdGenerationResponse

@Serializable
data class SdGenerationResponse(val images: List<String>? = null, val info: String? = null)(source)

Carries SdGenerationResponse data through the SDAI network layer.

Author

Dmitriy Moroz

Constructors

Link copied to clipboard
constructor(images: List<String>? = null, info: String? = null)

Types

Link copied to clipboard
@Serializable
data class Info(val seed: Long? = null, val allSeeds: List<Long>? = null, val subSeed: Long? = null, val allSubSeeds: List<Long>? = null, val subSeedStrength: Float? = null)

Properties

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

Exposes the images value used by the SDAI network layer.

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

Exposes the info value used by the SDAI network layer.