diff options
author | Christian Grothoff <christian@grothoff.org> | 2016-03-04 11:58:08 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2016-03-04 11:58:08 +0100 |
commit | 1216712fa1b3c88eb1d2ba5ff18922f20e5284a2 (patch) | |
tree | b8e79ad45af1da27a87bc8179f888dabf3720117 /api-bank.rst | |
parent | b1dd161b7de5b40aa3a28abbc96d9675b10a138e (diff) | |
parent | 9f98e7c772e7edade1ebea26f826d216223c804f (diff) | |
download | docs-1216712fa1b3c88eb1d2ba5ff18922f20e5284a2.tar.gz docs-1216712fa1b3c88eb1d2ba5ff18922f20e5284a2.tar.bz2 docs-1216712fa1b3c88eb1d2ba5ff18922f20e5284a2.zip |
Merge branch 'master' of git.taler.net:api
Diffstat (limited to 'api-bank.rst')
-rw-r--r-- | api-bank.rst | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/api-bank.rst b/api-bank.rst index d59cfd5..8d2d562 100644 --- a/api-bank.rst +++ b/api-bank.rst @@ -31,17 +31,20 @@ the recipient's account .. code-block:: tsref interface BankDepositRequest { - + // JSON 'amount' object. The amount the caller wants to transfer // to the recipient's count amount: Amount; // The id of this wire transfer - wid: base32; + wid: base32; + + // The sender's account identificator + debit_account: number; // The recipient's account identificator - account: number; - + credit_account: number; + } .. _BankIncomingError: @@ -52,5 +55,5 @@ the recipient's account // The reason which made this request fail. Typically due to malfomation // of the POST's body reason: string - + } |