watch-action-object.ts 331 B

12345678910111213141516171819202122
  1. export interface WatchActionObject {
  2. id: string
  3. type: 'WatchAction'
  4. startTime: string
  5. endTime: string
  6. location?: {
  7. addressCountry: string
  8. }
  9. uuid: string
  10. object: string
  11. actionStatus: 'CompletedActionStatus'
  12. duration: string
  13. watchSections: {
  14. startTimestamp: number
  15. endTimestamp: number
  16. }[]
  17. }