taler-docs

Documentation for GNU Taler components, APIs and protocols
Log | Files | Refs | README | LICENSE

commit 08092828cd5de38c2ab46743c05f261380065b37
parent 468bf7ad90c49517ddea5b113f4a6c6e7e71f158
Author: Christian Grothoff <grothoff@gnunet.org>
Date:   Sun,  3 Sep 2023 17:55:04 +0200

document API changes for #7275

Diffstat:
Mcore/api-bank-merchant.rst | 10++++++++--
Mcore/api-bank-wire.rst | 22+++++++++++++---------
2 files changed, 21 insertions(+), 11 deletions(-)

diff --git a/core/api-bank-merchant.rst b/core/api-bank-merchant.rst @@ -1,6 +1,6 @@ .. This file is part of GNU TALER. - Copyright (C) 2021 Taler Systems SA + Copyright (C) 2021-2023 Taler Systems SA TALER is free software; you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software @@ -14,7 +14,7 @@ TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/> .. _taler-bank-merchant-http-api: - + ============================ Taler Bank Merchant HTTP API ============================ @@ -102,6 +102,12 @@ Querying the transaction history // Array of incoming transactions. incoming_transactions : MerchantIncomingBankTransaction[]; + // Payto URI to identify the receiver of funds. + // This must be one of the merchant's bank accounts. + // Credit account is shared by all incoming transactions + // as per the nature of the request. + credit_account: string; + } .. ts:def:: MerchantIncomingBankTransaction diff --git a/core/api-bank-wire.rst b/core/api-bank-wire.rst @@ -1,6 +1,6 @@ .. This file is part of GNU TALER. - Copyright (C) 2019-2021 Taler Systems SA + Copyright (C) 2019-2023 Taler Systems SA TALER is free software; you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software @@ -177,6 +177,12 @@ Querying the transaction history // Array of incoming transactions. incoming_transactions : IncomingBankTransaction[]; + // Payto URI to identify the receiver of funds. + // This must be one of the exchange's bank accounts. + // Credit account is shared by all incoming transactions + // as per the nature of the request. + credit_account: string; + } .. ts:def:: IncomingBankTransaction @@ -200,10 +206,6 @@ Querying the transaction history // Amount transferred. amount: Amount; - // Payto URI to identify the receiver of funds. - // This must be one of the exchange's bank accounts. - credit_account: string; - // Payto URI to identify the sender of funds. debit_account: string; @@ -302,6 +304,12 @@ Querying the transaction history // Array of outgoing transactions. outgoing_transactions : OutgoingBankTransaction[]; + // Payto URI to identify the sender of funds. + // This must be one of the exchange's bank accounts. + // Credit account is shared by all incoming transactions + // as per the nature of the request. + debit_account: string; + } .. ts:def:: OutgoingBankTransaction @@ -320,10 +328,6 @@ Querying the transaction history // Payto URI to identify the receiver of funds. credit_account: string; - // Payto URI to identify the sender of funds. - // This must be one of the exchange's bank accounts. - debit_account: string; - // The wire transfer ID in the outgoing transaction. wtid: ShortHashCode;