use of network.bisq.api.model.payment.PaymentAccountHelper in project bisq-api by mrosseel.
the class BisqProxy method getAccountList.
public PaymentAccountList getAccountList() {
PaymentAccountList paymentAccountList = new PaymentAccountList();
paymentAccountList.paymentAccounts = getPaymentAccountList().stream().map(PaymentAccountHelper::toRestModel).collect(Collectors.toList());
return paymentAccountList;
}
Aggregations