com.adyen.model.marketpay.SetupBeneficiaryRequest 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.marketpay;
import java.util.Objects;
import com.google.gson.annotations.SerializedName;
/**
* SetupBeneficiaryRequest
*/
public class SetupBeneficiaryRequest {
@SerializedName("sourceAccountCode")
private String sourceAccountCode = null;
@SerializedName("destinationAccountCode")
private String destinationAccountCode = null;
@SerializedName("merchantReference")
private String merchantReference = null;
public SetupBeneficiaryRequest sourceAccountCode(String sourceAccountCode) {
this.sourceAccountCode = sourceAccountCode;
return this;
}
/**
* The source account code. This account will be closed as a result of this operation
*
* @return sourceAccountCode
**/
public String getSourceAccountCode() {
return sourceAccountCode;
}
public void setSourceAccountCode(String sourceAccountCode) {
this.sourceAccountCode = sourceAccountCode;
}
public SetupBeneficiaryRequest destinationAccountCode(String destinationAccountCode) {
this.destinationAccountCode = destinationAccountCode;
return this;
}
/**
* The destination account code. This account will receive all transactions of the source account.
*
* @return destinationAccountCode
**/
public String getDestinationAccountCode() {
return destinationAccountCode;
}
public void setDestinationAccountCode(String destinationAccountCode) {
this.destinationAccountCode = destinationAccountCode;
}
public SetupBeneficiaryRequest merchantReference(String merchantReference) {
this.merchantReference = merchantReference;
return this;
}
/**
* A reference indicating why this action has occurred.
*
* @return merchantReference
**/
public String getMerchantReference() {
return merchantReference;
}
public void setMerchantReference(String merchantReference) {
this.merchantReference = merchantReference;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SetupBeneficiaryRequest setupBeneficiaryRequest = (SetupBeneficiaryRequest) o;
return Objects.equals(this.sourceAccountCode, setupBeneficiaryRequest.sourceAccountCode)
&& Objects.equals(this.destinationAccountCode, setupBeneficiaryRequest.destinationAccountCode)
&& Objects.equals(this.merchantReference, setupBeneficiaryRequest.merchantReference);
}
@Override
public int hashCode() {
return Objects.hash(sourceAccountCode, destinationAccountCode, merchantReference);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SetupBeneficiaryRequest {\n");
sb.append(" sourceAccountCode: ").append(toIndentedString(sourceAccountCode)).append("\n");
sb.append(" destinationAccountCode: ").append(toIndentedString(destinationAccountCode)).append("\n");
sb.append(" merchantReference: ").append(toIndentedString(merchantReference)).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 ");
}
}