# Package-level declarations
# Types
Name | Summary |
---|---|
MIRACLError | data class MIRACLError<SUCCESS, FAIL>(val value: FAIL) : MIRACLResult<SUCCESS, FAIL> MIRACLError<SUCCESS, FAIL> is an error response from the MIRACLTrust SDK. It provides a value of type FAIL and an optional exception. |
MIRACLResult | sealed class MIRACLResult<SUCCESS, FAIL> MIRACLResult is a class representing the MIRACLTrust SDK responses. |
MIRACLSuccess | data class MIRACLSuccess<SUCCESS, FAIL>(val value: SUCCESS) : MIRACLResult<SUCCESS, FAIL> MIRACLSuccess<SUCCESS, FAIL> 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 MIRACL Trust Platform on its initialization. |