taler-docs

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

commit 5151e8b443cf9a9da4efb030868056e2d9069931
parent 6b62d9659b17895b4a69a01d2321b56d0f5af171
Author: Christian Grothoff <christian@grothoff.org>
Date:   Fri,  2 Jun 2017 23:21:36 +0200

API clarifications

Diffstat:
Mapi-exchange.rst | 8+++++++-
1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/api-exchange.rst b/api-exchange.rst @@ -434,6 +434,12 @@ exchange. // Sender account details, only present if type is "DEPOSIT". sender_account_details?: any; + // Receiver account details, only present if type is "PAYBACK". + receiver_account_details?: any; + + // Wire transfer identifier, only present if type is "PAYBACK". + wire_transfer?: any; + // Transfer details uniquely identifying the transfer, only present if type is "DEPOSIT". wire_reference?: any; @@ -455,7 +461,7 @@ exchange. // Public key of the coin that was paid back; only present if type is "PAYBACK". coin_pub?: CoinPublicKey; - // Timestamp when the exchange received the /payback. Only present if `type` is "PAYBACK". + // Timestamp when the exchange received the /payback or executed the wire transfer. Only present if `type` is "PAYBACK" or "CLOSING". timestamp?: Timestamp; }