Package com.fingerprint.android
Class FingerprintResponse
-
- All Implemented Interfaces:
public final class FingerprintResponseThe response returned by a successful Fingerprint.getVisitorId call.
-
-
Field Summary
Fields Modifier and Type Field Description private final StringeventIdprivate final StringvisitorIdprivate final IntegersuspectScoreprivate final StringsealedResultprivate final StringasJsonprivate final StringerrorMessage
-
Method Summary
Modifier and Type Method Description final StringgetEventId()Unique identifier for this identification event. final StringgetVisitorId()The stable identifier for this device. final IntegergetSuspectScore()Server-side risk score for this identification request, or nullif not present in the response.final StringgetSealedResult()The raw sealed (encrypted) result from the server, or nullif sealed results are not enabled for this workspace.final StringgetAsJson()The full server response as a JSON string. final StringgetErrorMessage()Non-null if the server returned a partial response with an error message. -
-
Method Detail
-
getEventId
final String getEventId()
Unique identifier for this identification event. Use it on the Fingerprint dashboard or Server API to query all signals and smart signals associated with this request. Useful for debugging and support tickets.
-
getVisitorId
final String getVisitorId()
The stable identifier for this device. Consistent across sessions for the same physical device.
-
getSuspectScore
final Integer getSuspectScore()
Server-side risk score for this identification request, or
nullif not present in the response. Higher values indicate higher suspicion.
-
getSealedResult
final String getSealedResult()
The raw sealed (encrypted) result from the server, or
nullif sealed results are not enabled for this workspace.
-
getErrorMessage
final String getErrorMessage()
Non-null if the server returned a partial response with an error message.
-
-
-
-