12345678910111213141516171819202122 |
- 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
- }[]
- }
|