Success

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

Represents a successful operation with the resulting data.

Parameters

data

The data resulting from the successful operation.

Constructors

Link copied to clipboard
constructor(data: T)

Properties

Link copied to clipboard
val data: T
Link copied to clipboard

Indicates whether this response represents a success.