com.adyen.service.Fund 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) 2020 Adyen B.V.
* This file is open source and available under the MIT license.
* See the LICENSE file for more info.
*/
package com.adyen.service;
import com.adyen.Client;
import com.adyen.Service;
import com.adyen.model.marketpay.AccountHolderBalanceRequest;
import com.adyen.model.marketpay.AccountHolderBalanceResponse;
import com.adyen.model.marketpay.AccountHolderTransactionListRequest;
import com.adyen.model.marketpay.AccountHolderTransactionListResponse;
import com.adyen.model.marketpay.DebitAccountHolderRequest;
import com.adyen.model.marketpay.DebitAccountHolderResponse;
import com.adyen.model.marketpay.PayoutAccountHolderRequest;
import com.adyen.model.marketpay.PayoutAccountHolderResponse;
import com.adyen.model.marketpay.RefundFundsTransferRequest;
import com.adyen.model.marketpay.RefundFundsTransferResponse;
import com.adyen.model.marketpay.RefundNotPaidOutTransfersRequest;
import com.adyen.model.marketpay.RefundNotPaidOutTransfersResponse;
import com.adyen.model.marketpay.SetupBeneficiaryRequest;
import com.adyen.model.marketpay.SetupBeneficiaryResponse;
import com.adyen.model.marketpay.TransferFundsRequest;
import com.adyen.model.marketpay.TransferFundsResponse;
import com.adyen.service.exception.ApiException;
import com.adyen.service.resource.fund.AccountHolderBalance;
import com.adyen.service.resource.fund.AccountHolderTransactionList;
import com.adyen.service.resource.fund.DebitAccountHolder;
import com.adyen.service.resource.fund.PayoutAccountHolder;
import com.adyen.service.resource.fund.RefundFundsTransfer;
import com.adyen.service.resource.fund.RefundNotPaidOutTransfers;
import com.adyen.service.resource.fund.SetupBeneficiary;
import com.adyen.service.resource.fund.TransferFunds;
import com.google.gson.reflect.TypeToken;
import java.io.IOException;
public class Fund extends Service {
private AccountHolderBalance accountHolderBalance;
private TransferFunds transferFunds;
private PayoutAccountHolder payoutAccountHolder;
private AccountHolderTransactionList accountHolderTransactionList;
private RefundNotPaidOutTransfers refundNotPaidOutTransfers;
private SetupBeneficiary setupBeneficiary;
private RefundFundsTransfer refundFundsTransfer;
private DebitAccountHolder debitAccountHolder;
public Fund(Client client) {
super(client);
accountHolderBalance = new AccountHolderBalance(this);
transferFunds = new TransferFunds(this);
payoutAccountHolder = new PayoutAccountHolder(this);
accountHolderTransactionList = new AccountHolderTransactionList(this);
refundNotPaidOutTransfers = new RefundNotPaidOutTransfers(this);
setupBeneficiary = new SetupBeneficiary(this);
refundFundsTransfer = new RefundFundsTransfer(this);
debitAccountHolder = new DebitAccountHolder(this);
}
public AccountHolderBalanceResponse accountHolderBalance(AccountHolderBalanceRequest accountHolderBalanceRequest) throws ApiException, IOException {
String jsonRequest = GSON.toJson(accountHolderBalanceRequest);
String jsonResult = accountHolderBalance.request(jsonRequest);
return GSON.fromJson(jsonResult, new TypeToken() {
}.getType());
}
public TransferFundsResponse transferFunds(TransferFundsRequest transferFundsRequest) throws ApiException, IOException {
String jsonRequest = GSON.toJson(transferFundsRequest);
String jsonResult = transferFunds.request(jsonRequest);
return GSON.fromJson(jsonResult, new TypeToken() {
}.getType());
}
public PayoutAccountHolderResponse payoutAccountHolder(PayoutAccountHolderRequest payoutAccountHolderRequest) throws ApiException, IOException {
String jsonRequest = GSON.toJson(payoutAccountHolderRequest);
String jsonResult = payoutAccountHolder.request(jsonRequest);
return GSON.fromJson(jsonResult, new TypeToken() {
}.getType());
}
public AccountHolderTransactionListResponse accountHolderTransactionList(AccountHolderTransactionListRequest accountHolderTransactionListRequest) throws ApiException, IOException {
String jsonRequest = GSON.toJson(accountHolderTransactionListRequest);
String jsonResult = accountHolderTransactionList.request(jsonRequest);
return GSON.fromJson(jsonResult, new TypeToken() {
}.getType());
}
public RefundNotPaidOutTransfersResponse refundNotPaidOutTransfers(RefundNotPaidOutTransfersRequest refundNotPaidOutTransfersRequest) throws ApiException, IOException {
String jsonRequest = GSON.toJson(refundNotPaidOutTransfersRequest);
String jsonResult = refundNotPaidOutTransfers.request(jsonRequest);
return GSON.fromJson(jsonResult, new TypeToken() {
}.getType());
}
public SetupBeneficiaryResponse setupBeneficiary(SetupBeneficiaryRequest setupBeneficiaryRequest) throws ApiException, IOException {
String jsonRequest = GSON.toJson(setupBeneficiaryRequest);
String jsonResult = setupBeneficiary.request(jsonRequest);
return GSON.fromJson(jsonResult, new TypeToken() {
}.getType());
}
public RefundFundsTransferResponse refundFundsTransfer(RefundFundsTransferRequest refundFundsTransferRequest) throws ApiException, IOException {
String jsonRequest = GSON.toJson(refundFundsTransferRequest);
String jsonResult = refundFundsTransfer.request(jsonRequest);
return GSON.fromJson(jsonResult, new TypeToken() {
}.getType());
}
public DebitAccountHolderResponse debitAccountHolder(DebitAccountHolderRequest debitAccountHolderRequest) throws ApiException, IOException {
String jsonRequest = GSON.toJson(debitAccountHolderRequest);
String jsonResult = debitAccountHolder.request(jsonRequest);
return GSON.fromJson(jsonResult, new TypeToken() {
}.getType());
}
}