Types
SdkResult
SdkResult Type
type SdkResult =
| {
type: typeof SdkResultValues.USER_SHARED_CREDENTIALS;
identityUuid: string;
}
| {
type: typeof SdkResultValues.USER_OPTED_OUT;
};
See the SdkResultValues
constant.
Examples
SdkResult Example (User Shared Credentials)
{
type: 'USER_SHARED_CREDENTIALS',
identityUuid: '3cf51925-e9fa-44f3-b091-1e1c63f4cc3d'
}
SdkResult Example (User Opted Out)
{
type: 'USER_OPTED_OUT'
}
SdkError
type SdkError = {
reason: typeof SdkErrorReasons;
};
See the SdkErrorReasons
constant.
Examples
SdkError Example (Session Timeout)
{
reason: 'SESSION_TIMEOUT'
}
SdkError Example (Invalid Session Key)
{
reason: 'INVALID_SESSION_KEY'
}
SdkError Example (Share Credentials Error)
{
reason: 'SHARE_CREDENTIALS_ERROR'
}