gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-docs] branch master updated: API Nexus, GET /transactions.


From: gnunet
Subject: [taler-docs] branch master updated: API Nexus, GET /transactions.
Date: Fri, 21 Apr 2023 16:30:31 +0200

This is an automated email from the git hooks/post-receive script.

ms pushed a commit to branch master
in repository docs.

The following commit(s) were added to refs/heads/master by this push:
     new f981811  API Nexus, GET /transactions.
f981811 is described below

commit f981811b9b8fc7a6f43e144051b8b3e2c00fa903
Author: MS <ms@taler.net>
AuthorDate: Thu Apr 20 14:29:16 2023 +0200

    API Nexus, GET /transactions.
    
    Avoiding mixing CaMt and custom data in one format.
---
 libeufin/api-nexus.rst | 56 +++++++++++++++++++++++++++-----------------------
 1 file changed, 30 insertions(+), 26 deletions(-)

diff --git a/libeufin/api-nexus.rst b/libeufin/api-nexus.rst
index 43684ae..a60bf4d 100644
--- a/libeufin/api-nexus.rst
+++ b/libeufin/api-nexus.rst
@@ -425,32 +425,36 @@ tracks the initiations of payments.
        // should NOT expect it to grow continuously.
        index: string;
 
-       // money moved by the transaction
-       amount: string;
-
-       // CRDT or DBIT
-       creditDebitIndicator: string
-
-       // Two of the most used values are BOOK, or PENDING
-       status: string;
-
-       // FIXME
-       bankTransactionCode: string;
-
-       // FIXME
-       valueDate: string;
-
-       // When this payment got booked.  In the form YYYY-MM-DD
-       bookingDate: string;
-
-       // FIXME
-       accountServicerRef: string;
-
-       // FIXME
-       batches: {
-         // list of batched transactions
-         batchTransactions: BatchedTransaction[];
-       };
+       // Nexus representation of a transaction.  The format is shaped
+       // around the CaMt terminology and its XML structure.
+       camtData: {
+         // money moved by the transaction
+         amount: string;
+  
+         // CRDT or DBIT
+         creditDebitIndicator: string
+  
+         // Two of the most used values are BOOK, or PENDING
+         status: string;
+  
+         // FIXME
+         bankTransactionCode: string;
+  
+         // FIXME
+         valueDate: string;
+  
+         // When this payment got booked.  In the form YYYY-MM-DD
+         bookingDate: string;
+  
+         // FIXME
+         accountServicerRef: string;
+  
+         // FIXME
+         batches: {
+           // list of batched transactions
+           batchTransactions: BatchedTransaction[];
+         };
+       }
      }
 
   .. ts:def:: BatchedTransaction

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]