commit 5b84471d4a6df6951f25eb51a663d31307cb3113 parent f091c096dd948c2e84a9298e8b47d69354186465 Author: Christian Grothoff <christian@grothoff.org> Date: Sun, 14 Jun 2026 14:57:49 +0200 keep using exactly the existing structures Diffstat:
| M | core/exchange/get-aml-OFFICER_PUB-wallet-credit.rst | | | 29 | +---------------------------- |
1 file changed, 1 insertion(+), 28 deletions(-)
diff --git a/core/exchange/get-aml-OFFICER_PUB-wallet-credit.rst b/core/exchange/get-aml-OFFICER_PUB-wallet-credit.rst @@ -34,7 +34,7 @@ **Response:** :http:statuscode:`200 OK`: - The responds will be a `WalletCreditListResponse` message. + The responds will be an `ExchangeTransferList` message. :http:statuscode:`204 No content`: There are no matching transactions. :http:statuscode:`403 Forbidden`: @@ -47,30 +47,3 @@ The server experienced an internal error. This response comes with a standard `ErrorDetail` response with a code of ``TALER_EC_GENERIC_DB_FETCH_FAILED``. - - .. ts:def:: WalletCreditListResponse - - interface WalletCreditListResponse { - - // List of matching transactions. - transfers: WalletCreditListEntry[]; - - } - - .. ts:def:: WalletCreditListEntry - - interface ExchangeTransferListEntry { - - // Row ID of the record. Used to filter by offset. - rowid: Integer; - - // payto://-URI of the wallet. - payto_uri: string; - - // The amount involved. - amount: Amount; - - // Time when the merge was made (effective) - execution_time: Timestamp; - - }