Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 796 Bytes

Settlements.md

File metadata and controls

31 lines (22 loc) · 796 Bytes

SETTLEMENTS

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.

Get all settlements

This describes how to fetch all settlements

ListResponse flwResponse = new Settlements()
        .runGetAllSettlements(Optional.empty(),
            Optional.empty(),
            Optional.empty(),
            Optional.empty());

Get a settlement

This describes how to get a settlement

ListResponse flwResponse = new Settlements()
        .runGetSettlement(id,
            Optional.empty(),
            Optional.empty());