# Package com.miracl.trust
# Types
Name | Summary |
---|---|
MIRACLError | data class MIRACLError<SUCCESS, FAIL>(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. |
MIRACLErrorCode | interface MIRACLErrorCode An code that describes MIRACLTrust error. |
MIRACLException | open class MIRACLException(errorCode: MIRACLErrorCode, message: String?, cause: Throwable?) : Exception Base exception for any error found during a MIRACLTrust operation |
MIRACLResult | sealed class MIRACLResult<SUCCESS, FAIL> MIRACLResult is a class representing the MIRACLTrust SDK responses. |
MIRACLSuccess | data class MIRACLSuccess<SUCCESS, FAIL>(value: SUCCESS) : MIRACLResult<SUCCESS, FAIL> MIRACLSuccess is a success response from the MIRACLTrust SDK. It provides a value of type SUCCESS. |
MIRACLTrust | class MIRACLTrust MIRACL Trust is the entry point of the MIRACL Trust SDK. It is configured and connects with the MIRACLTrust Platform on its initialization. |