com.adyen.model.modification.CaptureRequest 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) 2017 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.modification;
import java.util.Objects;
import com.adyen.Util.Util;
import com.adyen.model.Amount;
import com.google.gson.annotations.SerializedName;
/**
* CaptureRequests class
*/
public class CaptureRequest extends AbstractModificationRequest {
@SerializedName("modificationAmount")
private Amount modificationAmount = null;
public CaptureRequest modificationAmount(Amount modificationAmount) {
this.modificationAmount = modificationAmount;
return this;
}
public Amount getModificationAmount() {
return modificationAmount;
}
public void setModificationAmount(Amount modificationAmount) {
this.modificationAmount = modificationAmount;
}
//Shortcut for filling amount value + currency
public CaptureRequest fillAmount(String amount, String currency) {
Amount amountData = Util.createAmount(amount, currency);
this.setModificationAmount(amountData);
return this;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CaptureRequest captureRequest = (CaptureRequest) o;
return super.equals(captureRequest) &&
Objects.equals(this.modificationAmount, captureRequest.modificationAmount);
}
@Override
public int hashCode() {
return Objects.hash(modificationAmount, super.hashCode());
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CaptureRequest {\n");
sb.append(super.toString());
sb.append(" modificationAmount: ").append(toIndentedString(modificationAmount)).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 ");
}
}