HordeGenerationCheckResponse

@Serializable
data class HordeGenerationCheckResponse(val done: Boolean? = null, val isPossible: Boolean? = null, val waitTime: Int? = null, val queuePosition: Int? = null)(source)

Carries HordeGenerationCheckResponse 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)

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 = "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.