summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/api-merchant.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/core/api-merchant.rst b/core/api-merchant.rst
index 1b88c17e..e60d57af 100644
--- a/core/api-merchant.rst
+++ b/core/api-merchant.rst
@@ -2412,23 +2412,23 @@ funds to the exchange.
.. ts:def:: ReserveCreateRequest
interface ReserveCreateRequest {
- // Amount that the merchant promises to put into the reserve
+ // Amount that the merchant promises to put into the reserve.
initial_balance: Amount;
- // Exchange the merchant intends to use for tipping
+ // Exchange the merchant intends to use for tipping.
exchange_url: string;
- // Desired wire method, for example "iban" or "x-taler-bank"
+ // Desired wire method, for example "iban" or "x-taler-bank".
wire_method: string;
}
.. ts:def:: ReserveCreateConfirmation
interface ReserveCreateConfirmation {
- // Public key identifying the reserve
+ // Public key identifying the reserve.
reserve_pub: EddsaPublicKey;
- // Wire account of the exchange where to transfer the funds
+ // Wire account of the exchange where to transfer the funds.
payto_uri: string;
}