]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - watch-action-object.ts
ed336602f46f0e15485de2d28b58180bb9ead522
[github/Chocobozzz/PeerTube.git] / watch-action-object.ts
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 }