Package com.stripe.param.issuing
Class AuthorizationCreateParams.VerificationData.Builder
java.lang.Object
com.stripe.param.issuing.AuthorizationCreateParams.VerificationData.Builder
- Enclosing class:
- AuthorizationCreateParams.VerificationData
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
Finalize and obtain parameter instance from this builder.putAllExtraParam
(Map<String, Object> map) Add all map key/value pairs to `extraParams` map.putExtraParam
(String key, Object value) Add a key/value pair to `extraParams` map.setAddressLine1Check
(AuthorizationCreateParams.VerificationData.AddressLine1Check addressLine1Check) Whether the cardholder provided an address first line and if it matched the cardholder’sbilling.address.line1
.setAddressPostalCodeCheck
(AuthorizationCreateParams.VerificationData.AddressPostalCodeCheck addressPostalCodeCheck) Whether the cardholder provided a postal code and if it matched the cardholder’sbilling.address.postal_code
.setAuthenticationExemption
(AuthorizationCreateParams.VerificationData.AuthenticationExemption authenticationExemption) The exemption applied to this authorization.Whether the cardholder provided a CVC and if it matched Stripe’s record.Whether the cardholder provided an expiry date and if it matched Stripe’s record.3D Secure details.
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
build
Finalize and obtain parameter instance from this builder. -
setAddressLine1Check
public AuthorizationCreateParams.VerificationData.Builder setAddressLine1Check(AuthorizationCreateParams.VerificationData.AddressLine1Check addressLine1Check) Whether the cardholder provided an address first line and if it matched the cardholder’sbilling.address.line1
. -
setAddressPostalCodeCheck
public AuthorizationCreateParams.VerificationData.Builder setAddressPostalCodeCheck(AuthorizationCreateParams.VerificationData.AddressPostalCodeCheck addressPostalCodeCheck) Whether the cardholder provided a postal code and if it matched the cardholder’sbilling.address.postal_code
. -
setAuthenticationExemption
public AuthorizationCreateParams.VerificationData.Builder setAuthenticationExemption(AuthorizationCreateParams.VerificationData.AuthenticationExemption authenticationExemption) The exemption applied to this authorization. -
setCvcCheck
public AuthorizationCreateParams.VerificationData.Builder setCvcCheck(AuthorizationCreateParams.VerificationData.CvcCheck cvcCheck) Whether the cardholder provided a CVC and if it matched Stripe’s record. -
setExpiryCheck
public AuthorizationCreateParams.VerificationData.Builder setExpiryCheck(AuthorizationCreateParams.VerificationData.ExpiryCheck expiryCheck) Whether the cardholder provided an expiry date and if it matched Stripe’s record. -
putExtraParam
Add a key/value pair to `extraParams` map. A map is initialized for the first `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. SeeAuthorizationCreateParams.VerificationData.extraParams
for the field documentation. -
putAllExtraParam
Add all map key/value pairs to `extraParams` map. A map is initialized for the first `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. SeeAuthorizationCreateParams.VerificationData.extraParams
for the field documentation. -
setThreeDSecure
public AuthorizationCreateParams.VerificationData.Builder setThreeDSecure(AuthorizationCreateParams.VerificationData.ThreeDSecure threeDSecure) 3D Secure details.
-