Class AuthenticationRetrieveResponse.AdditionalData
-
- All Implemented Interfaces:
public final class AuthenticationRetrieveResponse.AdditionalDataObject containing additional data about the 3DS request that is beyond the EMV 3DS standard spec (e.g., specific fields that only certain card networks send but are not required across all 3DS requests).
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classAuthenticationRetrieveResponse.AdditionalData.BuilderA builder for AdditionalData.
public final classAuthenticationRetrieveResponse.AdditionalData.NetworkDecisionMastercard only: Indicates whether the network would have considered the authentication request to be low risk or not.
-
Method Summary
-
-
Method Detail
-
networkDecision
final Optional<AuthenticationRetrieveResponse.AdditionalData.NetworkDecision> networkDecision()
Mastercard only: Indicates whether the network would have considered the authentication request to be low risk or not.
-
networkRiskScore
final Optional<Long> networkRiskScore()
Mastercard only: Assessment by the network of the authentication risk level, with a higher value indicating a higher amount of risk. Permitted values: Integer between 0-950, in increments of 50.
-
_networkDecision
final JsonField<AuthenticationRetrieveResponse.AdditionalData.NetworkDecision> _networkDecision()
Returns the raw JSON value of networkDecision.
Unlike networkDecision, this method doesn't throw if the JSON field has an unexpected type.
-
_networkRiskScore
final JsonField<Long> _networkRiskScore()
Returns the raw JSON value of networkRiskScore.
Unlike networkRiskScore, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final AuthenticationRetrieveResponse.AdditionalData.Builder toBuilder()
-
validate
final AuthenticationRetrieveResponse.AdditionalData validate()
-
builder
final static AuthenticationRetrieveResponse.AdditionalData.Builder builder()
Returns a mutable builder for constructing an instance of AdditionalData.
-
-
-
-