HordeGenerationAsyncResponse

@Serializable
data class HordeGenerationAsyncResponse(val message: String? = null, val id: String? = null, val kudos: Double? = null)(source)

Carries HordeGenerationAsyncResponse data through the SDAI network layer.

Author

Dmitriy Moroz

Constructors

Link copied to clipboard
constructor(message: String? = null, id: String? = null, kudos: Double? = null)

Properties

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

Exposes the id value used by the SDAI network layer.

Link copied to clipboard
@SerialName(value = "kudos")
val kudos: Double?

Exposes the kudos value used by the SDAI network layer.

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

Exposes the message value used by the SDAI network layer.