gnunet-svn
[Top][All Lists]
Advanced

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

[taler-docs] branch master updated: update wallet-core API docs


From: gnunet
Subject: [taler-docs] branch master updated: update wallet-core API docs
Date: Wed, 29 Mar 2023 18:52:45 +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 d7f5633  update wallet-core API docs
d7f5633 is described below

commit d7f563328cc524f69b69c336e1034e8febcfa8b6
Author: Florian Dold <florian@dold.me>
AuthorDate: Wed Mar 29 18:52:27 2023 +0200

    update wallet-core API docs
---
 wallet/wallet-core.md | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/wallet/wallet-core.md b/wallet/wallet-core.md
index d8262f9..1d28f46 100644
--- a/wallet/wallet-core.md
+++ b/wallet/wallet-core.md
@@ -66,6 +66,8 @@ This file is auto-generated from 
[wallet-core](https://git.taler.net/wallet-core
 * [InitiatePeerPullCreditOp](#initiatepeerpullcreditop)
 * [PreparePeerPullDebitOp](#preparepeerpulldebitop)
 * [ConfirmPeerPullDebitOp](#confirmpeerpulldebitop)
+###  Data Validation
+* [ValidateIbanOp](#validateibanop)
 ###  Database Management
 * [ExportDbOp](#exportdbop)
 * [ImportDbOp](#importdbop)
@@ -1839,6 +1841,29 @@ export interface ConfirmPeerPullDebitRequest {
 
 ```
 
+### ValidateIbanOp
+```typescript
+export type ValidateIbanOp = {
+  op: WalletApiOperation.ValidateIban;
+  request: ValidateIbanRequest;
+  response: ValidateIbanResponse;
+};
+// ValidateIban = "validateIban"
+
+```
+```typescript
+export interface ValidateIbanRequest {
+  iban: string;
+}
+
+```
+```typescript
+export interface ValidateIbanResponse {
+  valid: boolean;
+}
+
+```
+
 ### ExportDbOp
 ```typescript
 /**

-- 
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]