Success

class Success<T>(response: T) : NetworkResult<T>

Represents a successful network operation.

Parameters

response

The successful response data.

Constructors

Link copied to clipboard
constructor(response: T)

Properties

Link copied to clipboard

An optional message providing additional information about the result.

Link copied to clipboard
val response: T?

The response data if the operation was successful.