Skip to content

Commit

Permalink
feat: payment split fetcher
Browse files Browse the repository at this point in the history
  • Loading branch information
jpdev01 committed Dec 8, 2024
1 parent 53e7b95 commit 31b6a68
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,14 @@ public static PaymentSplitReceivedReader receivedReader() {
return new PaymentSplitReceivedReader();
}

public static PaymentSplitPaidFetcher paidFetcher(String id) {
return new PaymentSplitPaidFetcher(id);
}

public static PaymentSplitReceivedFetcher receivedFetcher(String id) {
return new PaymentSplitReceivedFetcher(id);
}

public String getId() {
return id;
}
Expand Down

0 comments on commit 31b6a68

Please sign in to comment.