Wallet SDK
Toggle table of contents
common
Platform filter
common
Switch theme
Search in API
Wallet SDK
sdk-core
/
com.wallet.model
/
SdkResult
Sdk
Result
sealed
interface
SdkResult
<
out
T
>
Result wrapper for suspend calls that can fail without throwing.
Inheritors
Success
Failure
Members
Types
Failure
Link copied to clipboard
data
class
Failure
(
val
error
:
SdkError
)
:
SdkResult
<
Nothing
>
Success
Link copied to clipboard
data
class
Success
<
T
>
(
val
value
:
T
)
:
SdkResult
<
T
>