RequestResult

data class RequestResult(error: RequestError?)

Information returned when a request completes. If no error is present, then the request was successful.

Constructors

Link copied to clipboard
fun RequestResult(error: RequestError?)

Properties

Link copied to clipboard
val error: RequestError?

If this is not null, then an error occurred and the request was not completed.

Link copied to clipboard
val isError: Boolean