DeviceBoundSessionFailedRequest

@Serializable
data class DeviceBoundSessionFailedRequest(val requestUrl: String, val netError: String? = null, val responseError: Int? = null, val responseErrorBody: String? = null)

Details about a failed device bound session network request.

Constructors

Link copied to clipboard
constructor(requestUrl: String, netError: String? = null, responseError: Int? = null, responseErrorBody: String? = null)

Properties

Link copied to clipboard
val netError: String? = null

The net error of the response if it was not OK.

Link copied to clipboard

The failed request URL.

Link copied to clipboard
val responseError: Int? = null

The response code if the net error was OK and the response code was not

Link copied to clipboard

The body of the response if the net error was OK, the response code was not 200, and the response body was not empty.