gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-docs] branch master updated: syntax


From: gnunet
Subject: [taler-docs] branch master updated: syntax
Date: Tue, 28 Jul 2020 16:53:15 +0200

This is an automated email from the git hooks/post-receive script.

dold pushed a commit to branch master
in repository docs.

The following commit(s) were added to refs/heads/master by this push:
     new 77a3d6f  syntax
77a3d6f is described below

commit 77a3d6f14d7ac9fb6a62dd5e052538f2a7d7cd0c
Author: Florian Dold <florian.dold@gmail.com>
AuthorDate: Tue Jul 28 20:23:11 2020 +0530

    syntax
---
 taler-wallet.rst | 50 +++++++++++++++++++++++++-------------------------
 1 file changed, 25 insertions(+), 25 deletions(-)

diff --git a/taler-wallet.rst b/taler-wallet.rst
index 12fee3c..ab20438 100644
--- a/taler-wallet.rst
+++ b/taler-wallet.rst
@@ -658,41 +658,41 @@ Prepare Pay
 :Response:
   .. ts:def:: PreparePayResponse
 
-  type PreparePayResponse =
-    | PreparePayPaymentPossibleResponse
-    | PreparePayAlreadyConfirmedResponse
-    | PreparePayInsufficientBalanceResponse;
+    type PreparePayResponse =
+      | PreparePayPaymentPossibleResponse
+      | PreparePayAlreadyConfirmedResponse
+      | PreparePayInsufficientBalanceResponse;
 
-  interface PreparePayPaymentPossibleResponse {
-    status: "payment-possible";
+    interface PreparePayPaymentPossibleResponse {
+      status: "payment-possible";
 
-    proposalId: string;
+      proposalId: string;
 
-    // Verbatim contract terms as generated by the merchant.
-    contractTermsRaw: any;
-  }
+      // Verbatim contract terms as generated by the merchant.
+      contractTermsRaw: any;
+    }
 
-  interface PreparePayInsufficientBalanceResponse {
-    status: "insufficient-balance";
+    interface PreparePayInsufficientBalanceResponse {
+      status: "insufficient-balance";
 
-    proposalId: string;
+      proposalId: string;
 
-    // Verbatim contract terms as generated by the merchant.
-    contractTermsRaw: any;
-  }
+      // Verbatim contract terms as generated by the merchant.
+      contractTermsRaw: any;
+    }
 
-  interface PreparePayAlreadyConfirmedResponse {
-    status: "already-confirmed";
+    interface PreparePayAlreadyConfirmedResponse {
+      status: "already-confirmed";
 
-    proposalId: string;
+      proposalId: string;
 
-    // Did the payment succeed?
-    paid: boolean;
+      // Did the payment succeed?
+      paid: boolean;
 
-    // Redirect URL for the fulfillment page,
-    // only given if paid==true.
-    nextUrl?: string;
-  }
+      // Redirect URL for the fulfillment page,
+      // only given if paid==true.
+      nextUrl?: string;
+    }
 
 
 Confirm Payment

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]