From 1e96d36dfe38e4d72f239d0640117de37c3dcd18 Mon Sep 17 00:00:00 2001 From: Marcello Stanisci Date: Thu, 7 Dec 2017 16:52:14 +0100 Subject: fix rendering --- api-bank.rst | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) (limited to 'api-bank.rst') diff --git a/api-bank.rst b/api-bank.rst index ba8af776..b7f81c91 100644 --- 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. -- cgit v1.2.3