We recommend reading the main readme first, to understand the requirements for using the library and how to initiate this in your apps. This guide assumes you've read that.
This describes how to create a transfer beneficiary
Response flwResponse = new Beneficiaries()
.runCreateBeneficiary(new BeneficiaryRequest("0690000034",
"044",
"Ade Bond",
Optional.empty(),
Optional.empty()));This describes how to list all transfer beneficiaries
ListResponse flwResponse = new Beneficiaries()
.runGetAllBeneficiaries(Optional.page);This describes how to fetch a transfer beneficiary
Response flwResponse = new Beneficiaries()
.runGetBeneficiary(Optional.id);This describes how to delete a transfer beneficiary
Response flwResponse = new Beneficiaries()
.runDeleteBeneficiary(Optional.id);