Package com.adyen.model.checkout
Class GooglePayDetails
- java.lang.Object
-
- com.adyen.model.checkout.GooglePayDetails
-
public class GooglePayDetails extends Object
GooglePayDetails
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classGooglePayDetails.CustomTypeAdapterFactorystatic classGooglePayDetails.FundingSourceEnumThe funding source that should be used when multiple sources are available.static classGooglePayDetails.TypeEnum**googlepay**, **paywithgoogle**
-
Field Summary
Fields Modifier and Type Field Description static HashSet<String>openapiFieldsstatic HashSet<String>openapiRequiredFieldsstatic StringSERIALIZED_NAME_CHECKOUT_ATTEMPT_IDstatic StringSERIALIZED_NAME_FUNDING_SOURCEstatic StringSERIALIZED_NAME_GOOGLE_PAY_TOKENstatic StringSERIALIZED_NAME_RECURRING_DETAIL_REFERENCEstatic StringSERIALIZED_NAME_STORED_PAYMENT_METHOD_IDstatic StringSERIALIZED_NAME_TYPE
-
Constructor Summary
Constructors Constructor Description GooglePayDetails()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description GooglePayDetailscheckoutAttemptId(String checkoutAttemptId)booleanequals(Object o)static GooglePayDetailsfromJson(String jsonString)Create an instance of GooglePayDetails given an JSON stringGooglePayDetailsfundingSource(GooglePayDetails.FundingSourceEnum fundingSource)StringgetCheckoutAttemptId()The checkout attempt identifier.GooglePayDetails.FundingSourceEnumgetFundingSource()The funding source that should be used when multiple sources are available.StringgetGooglePayToken()The `token` that you obtained from the [Google Pay API](https://developers.google.com/pay/api/web/reference/response-objects#PaymentData) `PaymentData` response.StringgetRecurringDetailReference()Deprecated.StringgetStoredPaymentMethodId()This is the `recurringDetailReference` returned in the response when you created the token.GooglePayDetails.TypeEnumgetType()**googlepay**, **paywithgoogle**GooglePayDetailsgooglePayToken(String googlePayToken)inthashCode()GooglePayDetailsrecurringDetailReference(String recurringDetailReference)voidsetCheckoutAttemptId(String checkoutAttemptId)voidsetFundingSource(GooglePayDetails.FundingSourceEnum fundingSource)voidsetGooglePayToken(String googlePayToken)voidsetRecurringDetailReference(String recurringDetailReference)voidsetStoredPaymentMethodId(String storedPaymentMethodId)voidsetType(GooglePayDetails.TypeEnum type)GooglePayDetailsstoredPaymentMethodId(String storedPaymentMethodId)StringtoJson()Convert an instance of GooglePayDetails to an JSON stringStringtoString()GooglePayDetailstype(GooglePayDetails.TypeEnum type)static voidvalidateJsonObject(com.google.gson.JsonObject jsonObj)Validates the JSON Object and throws an exception if issues found
-
-
-
Field Detail
-
SERIALIZED_NAME_CHECKOUT_ATTEMPT_ID
public static final String SERIALIZED_NAME_CHECKOUT_ATTEMPT_ID
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_FUNDING_SOURCE
public static final String SERIALIZED_NAME_FUNDING_SOURCE
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_GOOGLE_PAY_TOKEN
public static final String SERIALIZED_NAME_GOOGLE_PAY_TOKEN
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_RECURRING_DETAIL_REFERENCE
public static final String SERIALIZED_NAME_RECURRING_DETAIL_REFERENCE
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_STORED_PAYMENT_METHOD_ID
public static final String SERIALIZED_NAME_STORED_PAYMENT_METHOD_ID
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_TYPE
public static final String SERIALIZED_NAME_TYPE
- See Also:
- Constant Field Values
-
-
Method Detail
-
checkoutAttemptId
public GooglePayDetails checkoutAttemptId(String checkoutAttemptId)
-
getCheckoutAttemptId
public String getCheckoutAttemptId()
The checkout attempt identifier.- Returns:
- checkoutAttemptId
-
setCheckoutAttemptId
public void setCheckoutAttemptId(String checkoutAttemptId)
-
fundingSource
public GooglePayDetails fundingSource(GooglePayDetails.FundingSourceEnum fundingSource)
-
getFundingSource
public GooglePayDetails.FundingSourceEnum getFundingSource()
The funding source that should be used when multiple sources are available. For Brazilian combo cards, by default the funding source is credit. To use debit, set this value to **debit**.- Returns:
- fundingSource
-
setFundingSource
public void setFundingSource(GooglePayDetails.FundingSourceEnum fundingSource)
-
googlePayToken
public GooglePayDetails googlePayToken(String googlePayToken)
-
getGooglePayToken
public String getGooglePayToken()
The `token` that you obtained from the [Google Pay API](https://developers.google.com/pay/api/web/reference/response-objects#PaymentData) `PaymentData` response.- Returns:
- googlePayToken
-
setGooglePayToken
public void setGooglePayToken(String googlePayToken)
-
recurringDetailReference
public GooglePayDetails recurringDetailReference(String recurringDetailReference)
-
getRecurringDetailReference
@Deprecated public String getRecurringDetailReference()
Deprecated.This is the `recurringDetailReference` returned in the response when you created the token.- Returns:
- recurringDetailReference
-
setRecurringDetailReference
public void setRecurringDetailReference(String recurringDetailReference)
-
storedPaymentMethodId
public GooglePayDetails storedPaymentMethodId(String storedPaymentMethodId)
-
getStoredPaymentMethodId
public String getStoredPaymentMethodId()
This is the `recurringDetailReference` returned in the response when you created the token.- Returns:
- storedPaymentMethodId
-
setStoredPaymentMethodId
public void setStoredPaymentMethodId(String storedPaymentMethodId)
-
type
public GooglePayDetails type(GooglePayDetails.TypeEnum type)
-
getType
public GooglePayDetails.TypeEnum getType()
**googlepay**, **paywithgoogle**- Returns:
- type
-
setType
public void setType(GooglePayDetails.TypeEnum type)
-
validateJsonObject
public static void validateJsonObject(com.google.gson.JsonObject jsonObj) throws IOExceptionValidates the JSON Object and throws an exception if issues found- Parameters:
jsonObj- JSON Object- Throws:
IOException- if the JSON Object is invalid with respect to GooglePayDetails
-
fromJson
public static GooglePayDetails fromJson(String jsonString) throws IOException
Create an instance of GooglePayDetails given an JSON string- Parameters:
jsonString- JSON string- Returns:
- An instance of GooglePayDetails
- Throws:
IOException- if the JSON string is invalid with respect to GooglePayDetails
-
toJson
public String toJson()
Convert an instance of GooglePayDetails to an JSON string- Returns:
- JSON string
-
-