Package-level declarations

Types

Link copied to clipboard
interface SavableError
Link copied to clipboard
@Serializable
data class SavableErrorFull(val name: String, val message: String, val stackTrace: String) : SavableError
Link copied to clipboard
@Serializable
data class SavableErrorShort(val name: String, val message: String) : SavableError
Link copied to clipboard
interface Transaction
Link copied to clipboard
@Serializable
data class TransactionFull(val id: Long = 0, val method: String, val sendTime: Long, val host: String, val path: String, val requestBody: ByteArray? = null, val requestHeaders: Map<String, String> = emptyMap(), val responseBody: ByteArray? = null, val responseTime: Long? = null, val responseHeaders: Map<String, String> = emptyMap(), val responseStatus: Int? = null, val error: SavableErrorFull? = null, val responseDefaultType: BodyType? = null, val importantInRequest: List<String> = emptyList(), val importantInResponse: List<String> = emptyList(), val isViewed: Boolean = false, val size: Long = 0, val sessionIdentifier: String) : Transaction
Link copied to clipboard
@Serializable
data class TransactionShort(val id: Long, val method: String, val sendTime: Long, val host: String, val path: String, val responseTime: Long?, val responseStatus: Int?, val error: SavableErrorShort?, val responseDefaultType: BodyType? = null, val isViewed: Boolean, val sessionIdentifier: String) : Transaction