aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/activitypub/objects/watch-action-object.ts
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models/activitypub/objects/watch-action-object.ts')
-rw-r--r--shared/models/activitypub/objects/watch-action-object.ts22
1 files changed, 22 insertions, 0 deletions
diff --git a/shared/models/activitypub/objects/watch-action-object.ts b/shared/models/activitypub/objects/watch-action-object.ts
new file mode 100644
index 000000000..ed336602f
--- /dev/null
+++ b/shared/models/activitypub/objects/watch-action-object.ts
@@ -0,0 +1,22 @@
1export interface WatchActionObject {
2 id: string
3 type: 'WatchAction'
4
5 startTime: string
6 endTime: string
7
8 location?: {
9 addressCountry: string
10 }
11
12 uuid: string
13 object: string
14 actionStatus: 'CompletedActionStatus'
15
16 duration: string
17
18 watchSections: {
19 startTimestamp: number
20 endTimestamp: number
21 }[]
22}