com.adyen.model.marketpay.notification.AccountHolderPayoutContent 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.notification;
import java.util.ArrayList;
import java.util.List;
import com.adyen.model.Amount;
import com.adyen.model.marketpay.AmountContainer;
import com.adyen.model.marketpay.BankAccountDetail;
import com.adyen.model.marketpay.OperationStatus;
public class AccountHolderPayoutContent {
private String accountHolderCode;
private String accountCode;
private BankAccountDetail bankAccountDetail;
private String description;
private List amounts = new ArrayList<>();
private OperationStatus status;
private String merchantReference;
public String getAccountHolderCode() {
return accountHolderCode;
}
public void setAccountHolderCode(String accountHolderCode) {
this.accountHolderCode = accountHolderCode;
}
public String getAccountCode() {
return accountCode;
}
public void setAccountCode(String accountCode) {
this.accountCode = accountCode;
}
public BankAccountDetail getBankAccountDetail() {
return bankAccountDetail;
}
public void setBankAccountDetail(BankAccountDetail bankAccountDetail) {
this.bankAccountDetail = bankAccountDetail;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public OperationStatus getStatus() {
return status;
}
public void setStatus(OperationStatus status) {
this.status = status;
}
public String getMerchantReference() {
return merchantReference;
}
public void setMerchantReference(String merchantReference) {
this.merchantReference = merchantReference;
}
public List getAmounts() {
return amounts;
}
public void setAmounts(List amounts) {
this.amounts = amounts;
}
public List getAmountList() {
List amountList = new ArrayList<>();
for (AmountContainer amount : amounts) {
amountList.add(amount.getAmount());
}
return amountList;
}
@Override
public String toString() {
return "AccountHolderPayoutContent{"
+ "accountHolderCode='"
+ accountHolderCode
+ '\''
+ ", accountCode='"
+ accountCode
+ '\''
+ ", bankAccountDetail="
+ bankAccountDetail
+ ", description='"
+ description
+ '\''
+ ", amounts="
+ amounts
+ ", status="
+ status
+ ", merchantReference='"
+ merchantReference
+ '\''
+ '}';
}
}