Success

data class Success<T>(val data: T) : Response<T>

Represents a successful response containing data.

Parameters

T

The type of data contained in the response.

Constructors

Link copied to clipboard
constructor(data: T)

Properties

Link copied to clipboard
val data: T

The data returned by the operation.