You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/com/flutterwave/services/Settlements.java
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -22,10 +22,10 @@ public class Settlements {
22
22
23
23
/**
24
24
* Query all settlements made to an account.
25
-
* @param page Optional<Integer> This is the page number to retrieve e.g. setting 1 retrieves the first page.
26
-
* @param from Optional<String> This is the specified date to start the list from. YYYY-MM-DD.
27
-
* @param to Optional<String> The is the specified end period for the search . YYYY-MM-DD.
28
-
* @param subaccount_id Optional<String> This is the unique id of the sub account you want to fetch. It is returned in the call to create a sub account.
25
+
* @param page Optional This is the page number to retrieve e.g. setting 1 retrieves the first page.
26
+
* @param from Optional This is the specified date to start the list from. YYYY-MM-DD.
27
+
* @param to Optional The is the specified end period for the search . YYYY-MM-DD.
28
+
* @param subaccount_id Optional This is the unique id of the sub account you want to fetch. It is returned in the call to create a sub account.
29
29
* @return ListResponse
30
30
*/
31
31
publicListResponserunGetAllSettlements(Optional<Integer> page, Optional<String> from, Optional<String> to,
@@ -44,8 +44,8 @@ public ListResponse runGetAllSettlements(Optional<Integer> page, Optional<String
44
44
/**
45
45
* Get details on a particular settlement specified by its ID.
46
46
* @param id int This is a unique identifier for the particular settlement you want to fetch. It is returned in the call to list all settlements as data.id.
47
-
* @param from Optional<String> The start date range to retrieve data from. Expected format is YYYY-MM-DD.
48
-
* @param to Optional<String> The end date range to retrieve data. Expected format is YYYY-MM-DD.
47
+
* @param from Optional The start date range to retrieve data from. Expected format is YYYY-MM-DD.
48
+
* @param to Optional The end date range to retrieve data. Expected format is YYYY-MM-DD.
Copy file name to clipboardExpand all lines: src/main/java/com/flutterwave/services/Subscriptions.java
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -25,15 +25,15 @@ public class Subscriptions {
25
25
26
26
/**
27
27
* Query all subscribers (cancelled subscriber included). You can do a single or bulk query with the endpoint depending on your use case.
28
-
* @param email Optional<String> This is the email of the subscriber. You can use this to query the transactions for a single customer.
29
-
* @param transaction_id Optional<Integer> This is a unique transaction identifier generated by our systems. It is returned in the initiate charge response as data.id.
30
-
* @param plan Optional<Integer> This is the ID of the payment plan. It is returned in the call to create a payment plan as data.id.
31
-
* @param subscribed_from Optional<String> This is the start date of the subscriptions(when they are first active). You can use this as a starting point for your query. The expected date format for this parameter is YYYY-MM-DD
32
-
* @param subscribed_to Optional<String> This is the end date for a subscription. Like subscribed_from, It also has an expected date format of YYYY-MM-DD.
33
-
* @param next_due_from Optional<String> This is the parameter to filter from the start date of the next due subscriptions.
34
-
* @param next_due_to Optional<String> This is the parameter to filter to the end date of the next due subscriptions.
35
-
* @param page Optional<String> This is the page number to retrieve e.g. setting 1 retrieves the first page.
36
-
* @param status Optional<String> This is the status for the queried transactions. Expected values are active and cancelled.
28
+
* @param email Optional This is the email of the subscriber. You can use this to query the transactions for a single customer.
29
+
* @param transaction_id Optional This is a unique transaction identifier generated by our systems. It is returned in the initiate charge response as data.id.
30
+
* @param plan Optional This is the ID of the payment plan. It is returned in the call to create a payment plan as data.id.
31
+
* @param subscribed_from Optional This is the start date of the subscriptions(when they are first active). You can use this as a starting point for your query. The expected date format for this parameter is YYYY-MM-DD
32
+
* @param subscribed_to Optional This is the end date for a subscription. Like subscribed_from, It also has an expected date format of YYYY-MM-DD.
33
+
* @param next_due_from Optional This is the parameter to filter from the start date of the next due subscriptions.
34
+
* @param next_due_to Optional This is the parameter to filter to the end date of the next due subscriptions.
35
+
* @param page Optional This is the page number to retrieve e.g. setting 1 retrieves the first page.
36
+
* @param status Optional This is the status for the queried transactions. Expected values are active and cancelled.
* Resend webhooks from failed sending queues to your server.
65
65
* @param id int This is a unique transaction identifier generated by our systems. It is returned in the initiate charge response as data.id
66
-
* @param wait Optional<Integer> This parameter would hold for the hook response and return what you respond with as the response. The expected value is 1.
66
+
* @param wait Optional This parameter would hold for the hook response and return what you respond with as the response. The expected value is 1.
0 commit comments