interface PhoneUsageEvent {
    callState: "NO_CALL" | "CALL_IN_PROGRESS" | "UNAVAILABLE";
    endTime: string;
    endTimeEpoch: number;
    startTime: string;
    startTimeEpoch: number;
    waypoints: Waypoint[];
}

Hierarchy (view full)

Properties

callState: "NO_CALL" | "CALL_IN_PROGRESS" | "UNAVAILABLE"

State of phone call during the phone usage event.

endTime: string
endTimeEpoch: number
startTime: string
startTimeEpoch: number
waypoints: Waypoint[]