Class ThreeDSAuthenticationSimulateParams.SimulateAuthenticationRequest.Builder
-
- All Implemented Interfaces:
public final class ThreeDSAuthenticationSimulateParams.SimulateAuthenticationRequest.BuilderA builder for SimulateAuthenticationRequest.
-
-
Method Summary
-
-
Method Detail
-
merchant
final ThreeDSAuthenticationSimulateParams.SimulateAuthenticationRequest.Builder merchant(ThreeDSAuthenticationSimulateParams.Merchant merchant)
Merchant information for the simulated transaction
-
merchant
final ThreeDSAuthenticationSimulateParams.SimulateAuthenticationRequest.Builder merchant(JsonField<ThreeDSAuthenticationSimulateParams.Merchant> merchant)
Sets Builder.merchant to an arbitrary JSON value.
You should usually call Builder.merchant with a well-typed Merchant value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
pan
final ThreeDSAuthenticationSimulateParams.SimulateAuthenticationRequest.Builder pan(String pan)
Sixteen digit card number.
-
pan
final ThreeDSAuthenticationSimulateParams.SimulateAuthenticationRequest.Builder pan(JsonField<String> pan)
Sets Builder.pan to an arbitrary JSON value.
You should usually call Builder.pan with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
transaction
final ThreeDSAuthenticationSimulateParams.SimulateAuthenticationRequest.Builder transaction(ThreeDSAuthenticationSimulateParams.Transaction transaction)
Transaction details for the simulation
-
transaction
final ThreeDSAuthenticationSimulateParams.SimulateAuthenticationRequest.Builder transaction(JsonField<ThreeDSAuthenticationSimulateParams.Transaction> transaction)
Sets Builder.transaction to an arbitrary JSON value.
You should usually call Builder.transaction with a well-typed Transaction value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
cardExpiryCheck
final ThreeDSAuthenticationSimulateParams.SimulateAuthenticationRequest.Builder cardExpiryCheck(ThreeDSAuthenticationSimulateParams.CardExpiryCheck cardExpiryCheck)
When set will use the following values as part of the Simulated Authentication. When not set defaults to MATCH
-
cardExpiryCheck
final ThreeDSAuthenticationSimulateParams.SimulateAuthenticationRequest.Builder cardExpiryCheck(JsonField<ThreeDSAuthenticationSimulateParams.CardExpiryCheck> cardExpiryCheck)
Sets Builder.cardExpiryCheck to an arbitrary JSON value.
You should usually call Builder.cardExpiryCheck with a well-typed CardExpiryCheck value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final ThreeDSAuthenticationSimulateParams.SimulateAuthenticationRequest.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final ThreeDSAuthenticationSimulateParams.SimulateAuthenticationRequest.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final ThreeDSAuthenticationSimulateParams.SimulateAuthenticationRequest.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final ThreeDSAuthenticationSimulateParams.SimulateAuthenticationRequest.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final ThreeDSAuthenticationSimulateParams.SimulateAuthenticationRequest.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final ThreeDSAuthenticationSimulateParams.SimulateAuthenticationRequest build()
Returns an immutable instance of SimulateAuthenticationRequest.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.merchant() .pan() .transaction()
-
-
-
-