commit 1e96d36dfe38e4d72f239d0640117de37c3dcd18 parent a6202bbdee8fe8131c12c62193aca8f9a788f0b7 Author: Marcello Stanisci <stanisci.m@gmail.com> Date: Thu, 7 Dec 2017 16:52:14 +0100 fix rendering Diffstat:
| M | api-bank.rst | | | 19 | +++++++++++-------- |
1 file changed, 11 insertions(+), 8 deletions(-)
diff --git a/api-bank.rst b/api-bank.rst @@ -131,18 +131,21 @@ request. :query row_id: row identifier of the transaction that should be cancelled. :query account_number: bank account for which the incoming transfer was made and for which `auth` provides the authentication data. *Currently ignored*, as multiple bank accounts per user are not implemented yet. - interface BankCancelRequest { + .. _BankCancelRequest: + .. code-block:: tsref - // Authentication method used - auth: BankAuth; + interface BankCancelRequest { - // The row id of the wire transfer to cancel - row_id: number; + // Authentication method used + auth: BankAuth; - // The recipient's account identificator - credit_account: number; + // The row id of the wire transfer to cancel + row_id: number; - } + // The recipient's account identificator + credit_account: number; + + } **Response** In case of an error, the body is a `BankError`_ object.