Class VerificationCreateParams.Signals.Builder
-
- All Implemented Interfaces:
public final class VerificationCreateParams.Signals.Builder
A builder for Signals.
-
-
Method Summary
-
-
Method Detail
-
appVersion
final VerificationCreateParams.Signals.Builder appVersion(String appVersion)
The version of your application.
-
appVersion
final VerificationCreateParams.Signals.Builder appVersion(JsonField<String> appVersion)
The version of your application.
-
deviceId
final VerificationCreateParams.Signals.Builder deviceId(String deviceId)
The unique identifier for the user's device. For Android, this corresponds to the
ANDROID_ID
and for iOS, this corresponds to theidentifierForVendor
.
-
deviceId
final VerificationCreateParams.Signals.Builder deviceId(JsonField<String> deviceId)
The unique identifier for the user's device. For Android, this corresponds to the
ANDROID_ID
and for iOS, this corresponds to theidentifierForVendor
.
-
deviceModel
final VerificationCreateParams.Signals.Builder deviceModel(String deviceModel)
The model of the user's device.
-
deviceModel
final VerificationCreateParams.Signals.Builder deviceModel(JsonField<String> deviceModel)
The model of the user's device.
-
devicePlatform
final VerificationCreateParams.Signals.Builder devicePlatform(VerificationCreateParams.Signals.DevicePlatform devicePlatform)
The type of the user's device.
-
devicePlatform
final VerificationCreateParams.Signals.Builder devicePlatform(JsonField<VerificationCreateParams.Signals.DevicePlatform> devicePlatform)
The type of the user's device.
-
ip
final VerificationCreateParams.Signals.Builder ip(String ip)
The IP address of the user's device.
-
ip
final VerificationCreateParams.Signals.Builder ip(JsonField<String> ip)
The IP address of the user's device.
-
isTrustedUser
final VerificationCreateParams.Signals.Builder isTrustedUser(Boolean isTrustedUser)
This signal should provide a higher level of trust, indicating that the user is genuine. For more details, refer to /guides/prevent-fraud#signals.
-
isTrustedUser
final VerificationCreateParams.Signals.Builder isTrustedUser(JsonField<Boolean> isTrustedUser)
This signal should provide a higher level of trust, indicating that the user is genuine. For more details, refer to /guides/prevent-fraud#signals.
-
osVersion
final VerificationCreateParams.Signals.Builder osVersion(String osVersion)
The version of the user's device operating system.
-
osVersion
final VerificationCreateParams.Signals.Builder osVersion(JsonField<String> osVersion)
The version of the user's device operating system.
-
userAgent
final VerificationCreateParams.Signals.Builder userAgent(String userAgent)
The user agent of the user's device. If the individual fields (os_version, device_platform, device_model) are provided, we will prioritize those values instead of parsing them from the user agent string.
-
userAgent
final VerificationCreateParams.Signals.Builder userAgent(JsonField<String> userAgent)
The user agent of the user's device. If the individual fields (os_version, device_platform, device_model) are provided, we will prioritize those values instead of parsing them from the user agent string.
-
additionalProperties
final VerificationCreateParams.Signals.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final VerificationCreateParams.Signals.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final VerificationCreateParams.Signals.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final VerificationCreateParams.Signals.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final VerificationCreateParams.Signals.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final VerificationCreateParams.Signals build()
-
-
-
-