commonMain.net.folivo.trixnity.clientserverapi.model.uia.ResponseWithUIA.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trixnity-clientserverapi-model Show documentation
Show all versions of trixnity-clientserverapi-model Show documentation
Multiplatform Kotlin SDK for matrix-protocol
package net.folivo.trixnity.clientserverapi.model.uia
import net.folivo.trixnity.core.ErrorResponse
sealed interface ResponseWithUIA {
data class Success(
val value: T
) : ResponseWithUIA
data class Step(
val state: UIAState,
) : ResponseWithUIA
data class Error(
val state: UIAState,
val errorResponse: ErrorResponse,
) : ResponseWithUIA
}