
com.adyen.model.checkout.CheckoutThreeDS2Action Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of adyen-java-api-library Show documentation
Show all versions of adyen-java-api-library Show documentation
Adyen API Client Library for Java
/*
* Adyen Checkout API
*
* The version of the OpenAPI document: 71
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.adyen.model.checkout;
import java.util.Objects;
import java.util.Map;
import java.util.HashMap;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.core.JsonProcessingException;
/**
* CheckoutThreeDS2Action
*/
@JsonPropertyOrder({
CheckoutThreeDS2Action.JSON_PROPERTY_AUTHORISATION_TOKEN,
CheckoutThreeDS2Action.JSON_PROPERTY_PAYMENT_DATA,
CheckoutThreeDS2Action.JSON_PROPERTY_PAYMENT_METHOD_TYPE,
CheckoutThreeDS2Action.JSON_PROPERTY_SUBTYPE,
CheckoutThreeDS2Action.JSON_PROPERTY_TOKEN,
CheckoutThreeDS2Action.JSON_PROPERTY_TYPE,
CheckoutThreeDS2Action.JSON_PROPERTY_URL
})
public class CheckoutThreeDS2Action {
public static final String JSON_PROPERTY_AUTHORISATION_TOKEN = "authorisationToken";
private String authorisationToken;
public static final String JSON_PROPERTY_PAYMENT_DATA = "paymentData";
private String paymentData;
public static final String JSON_PROPERTY_PAYMENT_METHOD_TYPE = "paymentMethodType";
private String paymentMethodType;
public static final String JSON_PROPERTY_SUBTYPE = "subtype";
private String subtype;
public static final String JSON_PROPERTY_TOKEN = "token";
private String token;
/**
* **threeDS2**
*/
public enum TypeEnum {
THREEDS2(String.valueOf("threeDS2"));
private String value;
TypeEnum(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
@JsonCreator
public static TypeEnum fromValue(String value) {
for (TypeEnum b : TypeEnum.values()) {
if (b.value.equals(value)) {
return b;
}
}
throw new IllegalArgumentException("Unexpected value '" + value + "'");
}
}
public static final String JSON_PROPERTY_TYPE = "type";
private TypeEnum type;
public static final String JSON_PROPERTY_URL = "url";
private String url;
public CheckoutThreeDS2Action() {
}
/**
* A token needed to authorise a payment.
*
* @param authorisationToken A token needed to authorise a payment.
* @return the current {@code CheckoutThreeDS2Action} instance, allowing for method chaining
*/
public CheckoutThreeDS2Action authorisationToken(String authorisationToken) {
this.authorisationToken = authorisationToken;
return this;
}
/**
* A token needed to authorise a payment.
* @return authorisationToken A token needed to authorise a payment.
*/
@JsonProperty(JSON_PROPERTY_AUTHORISATION_TOKEN)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getAuthorisationToken() {
return authorisationToken;
}
/**
* A token needed to authorise a payment.
*
* @param authorisationToken A token needed to authorise a payment.
*/
@JsonProperty(JSON_PROPERTY_AUTHORISATION_TOKEN)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setAuthorisationToken(String authorisationToken) {
this.authorisationToken = authorisationToken;
}
/**
* Encoded payment data.
*
* @param paymentData Encoded payment data.
* @return the current {@code CheckoutThreeDS2Action} instance, allowing for method chaining
*/
public CheckoutThreeDS2Action paymentData(String paymentData) {
this.paymentData = paymentData;
return this;
}
/**
* Encoded payment data.
* @return paymentData Encoded payment data.
*/
@JsonProperty(JSON_PROPERTY_PAYMENT_DATA)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getPaymentData() {
return paymentData;
}
/**
* Encoded payment data.
*
* @param paymentData Encoded payment data.
*/
@JsonProperty(JSON_PROPERTY_PAYMENT_DATA)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setPaymentData(String paymentData) {
this.paymentData = paymentData;
}
/**
* Specifies the payment method.
*
* @param paymentMethodType Specifies the payment method.
* @return the current {@code CheckoutThreeDS2Action} instance, allowing for method chaining
*/
public CheckoutThreeDS2Action paymentMethodType(String paymentMethodType) {
this.paymentMethodType = paymentMethodType;
return this;
}
/**
* Specifies the payment method.
* @return paymentMethodType Specifies the payment method.
*/
@JsonProperty(JSON_PROPERTY_PAYMENT_METHOD_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getPaymentMethodType() {
return paymentMethodType;
}
/**
* Specifies the payment method.
*
* @param paymentMethodType Specifies the payment method.
*/
@JsonProperty(JSON_PROPERTY_PAYMENT_METHOD_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setPaymentMethodType(String paymentMethodType) {
this.paymentMethodType = paymentMethodType;
}
/**
* A subtype of the token.
*
* @param subtype A subtype of the token.
* @return the current {@code CheckoutThreeDS2Action} instance, allowing for method chaining
*/
public CheckoutThreeDS2Action subtype(String subtype) {
this.subtype = subtype;
return this;
}
/**
* A subtype of the token.
* @return subtype A subtype of the token.
*/
@JsonProperty(JSON_PROPERTY_SUBTYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getSubtype() {
return subtype;
}
/**
* A subtype of the token.
*
* @param subtype A subtype of the token.
*/
@JsonProperty(JSON_PROPERTY_SUBTYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setSubtype(String subtype) {
this.subtype = subtype;
}
/**
* A token to pass to the 3DS2 Component to get the fingerprint.
*
* @param token A token to pass to the 3DS2 Component to get the fingerprint.
* @return the current {@code CheckoutThreeDS2Action} instance, allowing for method chaining
*/
public CheckoutThreeDS2Action token(String token) {
this.token = token;
return this;
}
/**
* A token to pass to the 3DS2 Component to get the fingerprint.
* @return token A token to pass to the 3DS2 Component to get the fingerprint.
*/
@JsonProperty(JSON_PROPERTY_TOKEN)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getToken() {
return token;
}
/**
* A token to pass to the 3DS2 Component to get the fingerprint.
*
* @param token A token to pass to the 3DS2 Component to get the fingerprint.
*/
@JsonProperty(JSON_PROPERTY_TOKEN)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setToken(String token) {
this.token = token;
}
/**
* **threeDS2**
*
* @param type **threeDS2**
* @return the current {@code CheckoutThreeDS2Action} instance, allowing for method chaining
*/
public CheckoutThreeDS2Action type(TypeEnum type) {
this.type = type;
return this;
}
/**
* **threeDS2**
* @return type **threeDS2**
*/
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public TypeEnum getType() {
return type;
}
/**
* **threeDS2**
*
* @param type **threeDS2**
*/
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setType(TypeEnum type) {
this.type = type;
}
/**
* Specifies the URL to redirect to.
*
* @param url Specifies the URL to redirect to.
* @return the current {@code CheckoutThreeDS2Action} instance, allowing for method chaining
*/
public CheckoutThreeDS2Action url(String url) {
this.url = url;
return this;
}
/**
* Specifies the URL to redirect to.
* @return url Specifies the URL to redirect to.
*/
@JsonProperty(JSON_PROPERTY_URL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getUrl() {
return url;
}
/**
* Specifies the URL to redirect to.
*
* @param url Specifies the URL to redirect to.
*/
@JsonProperty(JSON_PROPERTY_URL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setUrl(String url) {
this.url = url;
}
/**
* Return true if this CheckoutThreeDS2Action object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CheckoutThreeDS2Action checkoutThreeDS2Action = (CheckoutThreeDS2Action) o;
return Objects.equals(this.authorisationToken, checkoutThreeDS2Action.authorisationToken) &&
Objects.equals(this.paymentData, checkoutThreeDS2Action.paymentData) &&
Objects.equals(this.paymentMethodType, checkoutThreeDS2Action.paymentMethodType) &&
Objects.equals(this.subtype, checkoutThreeDS2Action.subtype) &&
Objects.equals(this.token, checkoutThreeDS2Action.token) &&
Objects.equals(this.type, checkoutThreeDS2Action.type) &&
Objects.equals(this.url, checkoutThreeDS2Action.url);
}
@Override
public int hashCode() {
return Objects.hash(authorisationToken, paymentData, paymentMethodType, subtype, token, type, url);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CheckoutThreeDS2Action {\n");
sb.append(" authorisationToken: ").append(toIndentedString(authorisationToken)).append("\n");
sb.append(" paymentData: ").append(toIndentedString(paymentData)).append("\n");
sb.append(" paymentMethodType: ").append(toIndentedString(paymentMethodType)).append("\n");
sb.append(" subtype: ").append(toIndentedString(subtype)).append("\n");
sb.append(" token: ").append(toIndentedString(token)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" url: ").append(toIndentedString(url)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
/**
* Create an instance of CheckoutThreeDS2Action given an JSON string
*
* @param jsonString JSON string
* @return An instance of CheckoutThreeDS2Action
* @throws JsonProcessingException if the JSON string is invalid with respect to CheckoutThreeDS2Action
*/
public static CheckoutThreeDS2Action fromJson(String jsonString) throws JsonProcessingException {
return JSON.getMapper().readValue(jsonString, CheckoutThreeDS2Action.class);
}
/**
* Convert an instance of CheckoutThreeDS2Action to an JSON string
*
* @return JSON string
*/
public String toJson() throws JsonProcessingException {
return JSON.getMapper().writeValueAsString(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy