Package com.maxmind.minfraud.response
Class Device
- java.lang.Object
- 
- com.maxmind.minfraud.AbstractModel
- 
- com.maxmind.minfraud.response.Device
 
 
- 
 public final class Device extends AbstractModel This class contains minFraud response data related to the device.In order to receive device output from minFraud Insights or minFraud Factors, you must be using the Device Tracking Add-on. - See Also:
- Device Tracking Add-on
 
- 
- 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description DoublegetConfidence()UUIDgetId()StringgetLastSeen()ZonedDateTimegetLastSeenDateTime()ZonedDateTimegetLocalDateTime()StringgetLocalTime()- 
Methods inherited from class com.maxmind.minfraud.AbstractModeltoJson, toString
 
- 
 
- 
- 
- 
Method Detail- 
getConfidencepublic Double getConfidence() - Returns:
- a number representing the confidence that the device ID refers to a unique device as opposed to a cluster of similar devices. A confidence of 0.01 indicates very low confidence that the device is unique, whereas 99 indicates very high confidence.
 
 - 
getIdpublic UUID getId() - Returns:
- A UUID identifying the device associated with this IP address. Note that many devices cannot be uniquely identified because they are too common (for example, all iPhones of a given model and OS release).
 
 - 
getLastSeenpublic String getLastSeen() - Returns:
- The date and time of the last sighting of the device. This is an RFC 3339 date-time.
 
 - 
getLastSeenDateTimepublic ZonedDateTime getLastSeenDateTime() - Returns:
- The date and time of the last sighting of the device as a
 ZonedDateTime.
 
 - 
getLocalTimepublic String getLocalTime() - Returns:
- The date and time of the transaction at the UTC offset associated with the device. This is an RFC 3339 date-time.
 
 - 
getLocalDateTimepublic ZonedDateTime getLocalDateTime() - Returns:
- The date and time of the transaction at the UTC offset
 associated with the device as a ZonedDateTime.
 
 
- 
 
-