Package com.adyen.model.balanceplatform
Class RegisterSCARequest
- java.lang.Object
-
- com.adyen.model.balanceplatform.RegisterSCARequest
-
public class RegisterSCARequest extends Object
RegisterSCARequest
-
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_PAYMENT_INSTRUMENT_IDstatic StringJSON_PROPERTY_STRONG_CUSTOMER_AUTHENTICATION
-
Constructor Summary
Constructors Constructor Description RegisterSCARequest()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)Return true if this RegisterSCARequest object is equal to o.static RegisterSCARequestfromJson(String jsonString)Create an instance of RegisterSCARequest given an JSON stringStringgetPaymentInstrumentId()The unique identifier of the payment instrument for which you are registering the SCA device.DelegatedAuthenticationDatagetStrongCustomerAuthentication()Get strongCustomerAuthenticationinthashCode()RegisterSCARequestpaymentInstrumentId(String paymentInstrumentId)voidsetPaymentInstrumentId(String paymentInstrumentId)The unique identifier of the payment instrument for which you are registering the SCA device.voidsetStrongCustomerAuthentication(DelegatedAuthenticationData strongCustomerAuthentication)strongCustomerAuthenticationRegisterSCARequeststrongCustomerAuthentication(DelegatedAuthenticationData strongCustomerAuthentication)StringtoJson()Convert an instance of RegisterSCARequest to an JSON stringStringtoString()
-
-
-
Field Detail
-
JSON_PROPERTY_PAYMENT_INSTRUMENT_ID
public static final String JSON_PROPERTY_PAYMENT_INSTRUMENT_ID
- See Also:
- Constant Field Values
-
JSON_PROPERTY_STRONG_CUSTOMER_AUTHENTICATION
public static final String JSON_PROPERTY_STRONG_CUSTOMER_AUTHENTICATION
- See Also:
- Constant Field Values
-
-
Method Detail
-
paymentInstrumentId
public RegisterSCARequest paymentInstrumentId(String paymentInstrumentId)
-
getPaymentInstrumentId
public String getPaymentInstrumentId()
The unique identifier of the payment instrument for which you are registering the SCA device.- Returns:
- paymentInstrumentId
-
setPaymentInstrumentId
public void setPaymentInstrumentId(String paymentInstrumentId)
The unique identifier of the payment instrument for which you are registering the SCA device.- Parameters:
paymentInstrumentId-
-
strongCustomerAuthentication
public RegisterSCARequest strongCustomerAuthentication(DelegatedAuthenticationData strongCustomerAuthentication)
-
getStrongCustomerAuthentication
public DelegatedAuthenticationData getStrongCustomerAuthentication()
Get strongCustomerAuthentication- Returns:
- strongCustomerAuthentication
-
setStrongCustomerAuthentication
public void setStrongCustomerAuthentication(DelegatedAuthenticationData strongCustomerAuthentication)
strongCustomerAuthentication- Parameters:
strongCustomerAuthentication-
-
equals
public boolean equals(Object o)
Return true if this RegisterSCARequest object is equal to o.
-
fromJson
public static RegisterSCARequest fromJson(String jsonString) throws com.fasterxml.jackson.core.JsonProcessingException
Create an instance of RegisterSCARequest given an JSON string- Parameters:
jsonString- JSON string- Returns:
- An instance of RegisterSCARequest
- Throws:
com.fasterxml.jackson.core.JsonProcessingException- if the JSON string is invalid with respect to RegisterSCARequest
-
toJson
public String toJson() throws com.fasterxml.jackson.core.JsonProcessingException
Convert an instance of RegisterSCARequest to an JSON string- Returns:
- JSON string
- Throws:
com.fasterxml.jackson.core.JsonProcessingException
-
-