Rest Response
Types
Link copied to clipboard
Link copied to clipboard
abstract class Status2XX(val status: Int, val responseCategory: RestResponse.ResponseCategory = ResponseCategory.Success) : RestResponse
Link copied to clipboard
abstract class Status3XX(val status: Int, val responseCategory: RestResponse.ResponseCategory = ResponseCategory.RequestIsWrong) : RestResponse
Link copied to clipboard
abstract class Status4XX(val status: Int, val path: String, val requestBody: String?, val responseCategory: RestResponse.ResponseCategory = ResponseCategory.RequestIsWrong) : RestResponse
Link copied to clipboard
abstract class Status5xx(val status: Int, val responseCategory: RestResponse.ResponseCategory = ResponseCategory.ServerProblem) : RestResponse
Link copied to clipboard
class UnexpectedStatus(val bytes: ByteArray, val status: Int, val responseCategory: RestResponse.ResponseCategory = ResponseCategory.Other) : RestResponse