com.adyen.model.checkout.PaymentsDetailsRequest 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 Java API Library
*
* Copyright (c) 2018 Adyen B.V.
* This file is open source and available under the MIT license.
* See the LICENSE file for more info.
*/
package com.adyen.model.checkout;
import com.google.gson.annotations.SerializedName;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
/**
* PaymentsDetailsRequest
*/
public class PaymentsDetailsRequest {
@SerializedName("details")
private Map details = null;
@SerializedName("paymentData")
private String paymentData = null;
@SerializedName("threeDSAuthenticationOnly")
private Boolean threeDSAuthenticationOnly;
public PaymentsDetailsRequest details(Map details) {
this.details = details;
return this;
}
public PaymentsDetailsRequest putDetailsItem(String key, String detailsItem) {
this.details.put(key, detailsItem);
return this;
}
/**
* Use this collection to submit the details that were returned as a result of the `/payments` call.
*
* @return details
**/
public Map getDetails() {
return details;
}
public void setDetails(Map details) {
this.details = details;
}
public PaymentsDetailsRequest paymentData(String paymentData) {
this.paymentData = paymentData;
return this;
}
/**
* The `paymentData` value that you received in the response to the `/payments` call.
*
* @return paymentData
**/
public String getPaymentData() {
return paymentData;
}
public void setPaymentData(String paymentData) {
this.paymentData = paymentData;
}
public PaymentsDetailsRequest set3DRequestData(String md, String paRes, String paymentData) {
if (this.details == null) {
this.details = new HashMap<>();
}
this.details.put("MD", md);
this.details.put("PaRes", paRes);
this.paymentData(paymentData);
return this;
}
public PaymentsDetailsRequest setFingerPrint(String fingerPrint, String paymentData) {
if (this.details == null) {
this.details = new HashMap<>();
}
this.details.put("threeds2.fingerprint", fingerPrint);
this.paymentData(paymentData);
return this;
}
public PaymentsDetailsRequest setChallengeResult(String challengeResult, String paymentData) {
if (this.details == null) {
this.details = new HashMap<>();
}
this.details.put("threeds2.challengeResult", challengeResult);
this.paymentData(paymentData);
return this;
}
/**
* Change the authenticationOnly indicator originally set in the `/payments` request. Only needs to be set if you want to modify the value set previously.
*
* @return the three ds authentication only
*/
public Boolean getThreeDSAuthenticationOnly() {
return threeDSAuthenticationOnly;
}
public void setThreeDSAuthenticationOnly(Boolean threeDSAuthenticationOnly) {
this.threeDSAuthenticationOnly = threeDSAuthenticationOnly;
}
public PaymentsDetailsRequest threeDSAuthenticationOnly(Boolean threeDSAuthenticationOnly) {
this.threeDSAuthenticationOnly = threeDSAuthenticationOnly;
return this;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
PaymentsDetailsRequest paymentsDetailsRequest = (PaymentsDetailsRequest) o;
return Objects.equals(this.details, paymentsDetailsRequest.details)
&& Objects.equals(this.paymentData, paymentsDetailsRequest.paymentData)
&& Objects.equals(this.threeDSAuthenticationOnly, paymentsDetailsRequest.threeDSAuthenticationOnly);
}
@Override
public int hashCode() {
return Objects.hash(details, paymentData, threeDSAuthenticationOnly);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PaymentsDetailsRequest {\n");
sb.append(" details: ").append(toIndentedString(details)).append("\n");
sb.append(" paymentData: ").append(toIndentedString(paymentData)).append("\n");
sb.append(" threeDSAuthenticationOnly: ").append(toIndentedString(threeDSAuthenticationOnly)).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 ");
}
}