summaryrefslogtreecommitdiff
path: root/libeufin
diff options
context:
space:
mode:
authorMarcello Stanisci <ms@taler.net>2020-05-08 23:19:35 +0200
committerMarcello Stanisci <ms@taler.net>2020-05-10 01:15:37 +0200
commit76013b87e4879d12946d566f24af4c34ae7bc65b (patch)
tree729c8f866f3862418253e5efecfcd832e0e5c548 /libeufin
parent4f541207d82b1b5f16b097ba6edacd5887299783 (diff)
downloaddocs-76013b87e4879d12946d566f24af4c34ae7bc65b.tar.gz
docs-76013b87e4879d12946d566f24af4c34ae7bc65b.tar.bz2
docs-76013b87e4879d12946d566f24af4c34ae7bc65b.zip
fix optional field notation
Diffstat (limited to 'libeufin')
-rw-r--r--libeufin/api-nexus2.rst7
1 files changed, 4 insertions, 3 deletions
diff --git a/libeufin/api-nexus2.rst b/libeufin/api-nexus2.rst
index 7d5b1f0e..ba4d4de7 100644
--- a/libeufin/api-nexus2.rst
+++ b/libeufin/api-nexus2.rst
@@ -96,7 +96,7 @@ Bank Account Management
uuid: string;
// Specify the bank transport to use for the submission.
- transport: string?;
+ transport?: string;
}
:status 404 Not Found: the unique identifier **or**
@@ -148,14 +148,15 @@ Bank Account Management
.. ts:def:: PreparedPaymentRequest
- interface PreparedPayment {
+ interface PreparedPaymentRequest {
// IBAN that will receive the payment.
iban: string;
// BIC hosting the IBAN.
bic: string;
// Legal subject that will receive the payment.
name: string;
-
+ // payment subject.
+ subject: string;
// amount, in the format CURRENCY:XX.YY
amount: string
}