HordeGenerationCheckFullResponse

@Serializable
data class HordeGenerationCheckFullResponse(val done: Boolean? = null, val isPossible: Boolean? = null, val waitTime: Int? = null, val queuePosition: Int? = null, val generations: List<HordeGenerationCheckFullResponse.Generation>? = null)(source)

Carries HordeGenerationCheckFullResponse data through the SDAI network layer.

Author

Dmitriy Moroz

Constructors

Link copied to clipboard
constructor(done: Boolean? = null, isPossible: Boolean? = null, waitTime: Int? = null, queuePosition: Int? = null, generations: List<HordeGenerationCheckFullResponse.Generation>? = null)

Types

Link copied to clipboard
@Serializable
data class Generation(val id: String? = null, val img: String? = null, val seed: String? = null, val censored: Boolean? = null)

Properties

Link copied to clipboard
@SerialName(value = "done")
val done: Boolean?

Exposes the done value used by the SDAI network layer.

Link copied to clipboard
@SerialName(value = "generations")
val generations: List<HordeGenerationCheckFullResponse.Generation>?

Exposes the generations value used by the SDAI network layer.

Link copied to clipboard
@SerialName(value = "is_possible")
val isPossible: Boolean?

Exposes the isPossible value used by the SDAI network layer.

Link copied to clipboard
@SerialName(value = "queue_position")
val queuePosition: Int?

Exposes the queuePosition value used by the SDAI network layer.

Link copied to clipboard
@SerialName(value = "wait_time")
val waitTime: Int?

Exposes the waitTime value used by the SDAI network layer.