Success

data class Success<out T>(val data: T) : ResultS1SDK<T, Nothing>

Success is a sealed class that represents the result of an operation that has succeeded.

Return

ResultS1SDK<T, Nothing> the result of the operation.

Parameters

data

T the data that was successfully processed.

Constructors

Link copied to clipboard
constructor(data: T)

Properties

Link copied to clipboard
val data: T