Package-level declarations

Types

Link copied to clipboard
data class MIRACLError<SUCCESS, FAIL>(val value: FAIL) : MIRACLResult<SUCCESS, FAIL>

MIRACLError is an error response from the MIRACLTrust SDK. It provides a value of type FAIL and an optional exception.

Link copied to clipboard
sealed class MIRACLResult<SUCCESS, FAIL>

MIRACLResult is a class representing the MIRACLTrust SDK responses.

Link copied to clipboard
data class MIRACLSuccess<SUCCESS, FAIL>(val value: SUCCESS) : MIRACLResult<SUCCESS, FAIL>

MIRACLSuccess is a success response from the MIRACLTrust SDK. It provides a value of type SUCCESS.

Link copied to clipboard

MIRACL Trust is the entry point of the MIRACL Trust SDK. It is configured and connects with the MIRACL Trust Platform on its initialization.