summaryrefslogtreecommitdiff
path: root/src/types/history.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-12-13 13:31:06 +0100
committerFlorian Dold <florian.dold@gmail.com>2019-12-13 13:31:06 +0100
commitb4bb9e92adffdc25cca2b49550ed41d96df19802 (patch)
treea55331aa241d6faee2fb8fe3ade5c3be74eca8d2 /src/types/history.ts
parent04a60770ee6a282f4833b8bfe72525ea36b8e295 (diff)
downloadwallet-core-b4bb9e92adffdc25cca2b49550ed41d96df19802.tar.gz
wallet-core-b4bb9e92adffdc25cca2b49550ed41d96df19802.tar.bz2
wallet-core-b4bb9e92adffdc25cca2b49550ed41d96df19802.zip
event id
Diffstat (limited to 'src/types/history.ts')
-rw-r--r--src/types/history.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/types/history.ts b/src/types/history.ts
index 0adc27d56..08c499870 100644
--- a/src/types/history.ts
+++ b/src/types/history.ts
@@ -678,6 +678,13 @@ export interface HistoryEventBase {
* Main timestamp of the history event.
*/
timestamp: Timestamp;
+
+ /**
+ * Opaque unique ID for the event, used as a starting point
+ * for paginating history queries and for invoking actions
+ * on the event (e.g. hiding it from the history).
+ */
+ eventId: string;
}
/**