diff options
Diffstat (limited to 'shared/models/activitypub/objects/watch-action-object.ts')
-rw-r--r-- | shared/models/activitypub/objects/watch-action-object.ts | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/shared/models/activitypub/objects/watch-action-object.ts b/shared/models/activitypub/objects/watch-action-object.ts deleted file mode 100644 index ed336602f..000000000 --- a/shared/models/activitypub/objects/watch-action-object.ts +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | export 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 | } | ||