RequestResult

data class RequestResult(val error: RequestError?)

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

Constructors

Link copied to clipboard
constructor(error: RequestError?)

Properties

Link copied to clipboard

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

Link copied to clipboard