aboutsummaryrefslogtreecommitdiff
path: root/src/dbTypes.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/dbTypes.ts')
-rw-r--r--src/dbTypes.ts17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/dbTypes.ts b/src/dbTypes.ts
index e0adb6fc4..264f81dd5 100644
--- a/src/dbTypes.ts
+++ b/src/dbTypes.ts
@@ -34,6 +34,7 @@ import {
PayReq,
RefundPermission,
TipResponse,
+ WireDetail,
} from "./talerTypes";
@@ -809,3 +810,19 @@ export interface PurchaseRecord {
*/
timestamp_refund: number;
}
+
+
+/**
+ * Information about wire information for bank accounts we withdrew coins from.
+ */
+export interface SenderWireRecord {
+ /**
+ * Wire details.
+ */
+ senderWire: WireDetail;
+
+ /**
+ * Identifier, hash code of canonicalized senderWire.
+ */
+ id: number;
+}