com.flutterwave.rave.java.entry.subaccounts Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Rave-Java Show documentation
Show all versions of Rave-Java Show documentation
A Java API wrapper for the Rave API
The newest version!
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.flutterwave.rave.java.entry;
import com.flutterwave.rave.java.payload.subaccountpayload;
import com.flutterwave.rave.java.service.accountServices;
/**
*
* @author cleopatradouglas
*/
public class subaccounts {
public String dosubaccountslist(subaccountpayload subaccountpayload){
accountServices accountservices = new accountServices();
String response = accountservices.dolistsubaccounts(subaccountpayload);
return response;
}
public String dosubaccountsget(subaccountpayload subaccountpayload){
accountServices accountservices = new accountServices();
String response = accountservices.dogetsubaccounts(subaccountpayload);
return response;
}
public String dosubaccountscreate(subaccountpayload subaccountpayload){
accountServices accountservices = new accountServices();
String response = accountservices.docreatesubaccounts(subaccountpayload);
return response;
}
public String dosubaccountsdelete(subaccountpayload subaccountpayload){
accountServices accountservices = new accountServices();
String response = accountservices.dodeletesubaccounts(subaccountpayload);
return response;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy