23 lines
331 B
TypeScript
23 lines
331 B
TypeScript
|
export interface WatchActionObject {
|
||
|
id: string
|
||
|
type: 'WatchAction'
|
||
|
|
||
|
startTime: string
|
||
|
endTime: string
|
||
|
|
||
|
location?: {
|
||
|
addressCountry: string
|
||
|
}
|
||
|
|
||
|
uuid: string
|
||
|
object: string
|
||
|
actionStatus: 'CompletedActionStatus'
|
||
|
|
||
|
duration: string
|
||
|
|
||
|
watchSections: {
|
||
|
startTimestamp: number
|
||
|
endTimestamp: number
|
||
|
}[]
|
||
|
}
|