NetworkResult

sealed class NetworkResult<T>

A sealed class representing the result of a network operation.

This class encapsulates the possible outcomes of a network request, including success, error, and loading states.

Parameters

T

The type of the response data.

Inheritors

Types

Link copied to clipboard
class Error<T>(message: String, response: T? = null) : NetworkResult<T>

Represents an error that occurred during a network operation.

Link copied to clipboard

Represents a loading state for a network operation.

Link copied to clipboard
class Success<T>(response: T) : NetworkResult<T>

Represents a successful network operation.

Properties

Link copied to clipboard
val message: String? = null

An optional message providing additional information about the result.

Link copied to clipboard
val response: T? = null

The response data if the operation was successful.