[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-docs] branch master updated: update wallet-core docs
From: |
gnunet |
Subject: |
[taler-docs] branch master updated: update wallet-core docs |
Date: |
Wed, 02 Oct 2024 17:35:42 +0200 |
This is an automated email from the git hooks/post-receive script.
dold pushed a commit to branch master
in repository docs.
The following commit(s) were added to refs/heads/master by this push:
new 4d7e7fa2 update wallet-core docs
4d7e7fa2 is described below
commit 4d7e7fa25aeb61faf206349528bfc87fa2753e26
Author: Florian Dold <florian@dold.me>
AuthorDate: Wed Oct 2 17:35:38 2024 +0200
update wallet-core docs
---
wallet/wallet-core.md | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/wallet/wallet-core.md b/wallet/wallet-core.md
index 3495cc0c..a2f69ce3 100644
--- a/wallet/wallet-core.md
+++ b/wallet/wallet-core.md
@@ -526,8 +526,23 @@ export interface GetTransactionsV2Request {
offsetTimestamp?: TalerPreciseTimestamp;
/**
* Number of transactions to return.
+ *
+ * When the limit is positive, results are returned
+ * in ascending order of their timestamp. If no offset is specified,
+ * the result list begins with the first transaction.
+ * If an offset is specified, transactions after the offset are returned.
+ *
+ * When the limit is negative, results are returned
+ * in descending order of their timestamp. If no offset is specified,
+ * the result list begins with with the last transaction.
+ * If an offset is specified, transactions before the offset are returned.
*/
limit?: number;
+ /**
+ * Filter transactions by their state / state category.
+ *
+ * If not specified, all transactions are returned.
+ */
filterState?: "final" | "nonfinal" | "done";
}
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.