Package com.adyen.model.checkout
Class BillDeskDetails
- java.lang.Object
-
- com.adyen.model.checkout.BillDeskDetails
-
public class BillDeskDetails extends Object
BillDeskDetails
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classBillDeskDetails.TypeEnum**billdesk**
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_CHECKOUT_ATTEMPT_IDstatic StringJSON_PROPERTY_ISSUERstatic StringJSON_PROPERTY_TYPE
-
Constructor Summary
Constructors Constructor Description BillDeskDetails()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description BillDeskDetailscheckoutAttemptId(String checkoutAttemptId)booleanequals(Object o)Return true if this BillDeskDetails object is equal to o.static BillDeskDetailsfromJson(String jsonString)Create an instance of BillDeskDetails given an JSON stringStringgetCheckoutAttemptId()The checkout attempt identifier.StringgetIssuer()The issuer id of the shopper's selected bank.BillDeskDetails.TypeEnumgetType()**billdesk**inthashCode()BillDeskDetailsissuer(String issuer)voidsetCheckoutAttemptId(String checkoutAttemptId)The checkout attempt identifier.voidsetIssuer(String issuer)The issuer id of the shopper's selected bank.voidsetType(BillDeskDetails.TypeEnum type)**billdesk**StringtoJson()Convert an instance of BillDeskDetails to an JSON stringStringtoString()BillDeskDetailstype(BillDeskDetails.TypeEnum type)
-
-
-
Field Detail
-
JSON_PROPERTY_CHECKOUT_ATTEMPT_ID
public static final String JSON_PROPERTY_CHECKOUT_ATTEMPT_ID
- See Also:
- Constant Field Values
-
JSON_PROPERTY_ISSUER
public static final String JSON_PROPERTY_ISSUER
- See Also:
- Constant Field Values
-
JSON_PROPERTY_TYPE
public static final String JSON_PROPERTY_TYPE
- See Also:
- Constant Field Values
-
-
Method Detail
-
checkoutAttemptId
public BillDeskDetails checkoutAttemptId(String checkoutAttemptId)
-
getCheckoutAttemptId
public String getCheckoutAttemptId()
The checkout attempt identifier.- Returns:
- checkoutAttemptId
-
setCheckoutAttemptId
public void setCheckoutAttemptId(String checkoutAttemptId)
The checkout attempt identifier.- Parameters:
checkoutAttemptId-
-
issuer
public BillDeskDetails issuer(String issuer)
-
getIssuer
public String getIssuer()
The issuer id of the shopper's selected bank.- Returns:
- issuer
-
setIssuer
public void setIssuer(String issuer)
The issuer id of the shopper's selected bank.- Parameters:
issuer-
-
type
public BillDeskDetails type(BillDeskDetails.TypeEnum type)
-
getType
public BillDeskDetails.TypeEnum getType()
**billdesk**- Returns:
- type
-
setType
public void setType(BillDeskDetails.TypeEnum type)
**billdesk**- Parameters:
type-
-
equals
public boolean equals(Object o)
Return true if this BillDeskDetails object is equal to o.
-
fromJson
public static BillDeskDetails fromJson(String jsonString) throws com.fasterxml.jackson.core.JsonProcessingException
Create an instance of BillDeskDetails given an JSON string- Parameters:
jsonString- JSON string- Returns:
- An instance of BillDeskDetails
- Throws:
com.fasterxml.jackson.core.JsonProcessingException- if the JSON string is invalid with respect to BillDeskDetails
-
toJson
public String toJson() throws com.fasterxml.jackson.core.JsonProcessingException
Convert an instance of BillDeskDetails to an JSON string- Returns:
- JSON string
- Throws:
com.fasterxml.jackson.core.JsonProcessingException
-
-