Type alias DriveResumeInfo

DriveResumeInfo: {
    driveGapEndTimestampMillis: number;
    driveGapStartTimestampMillis: number;
    driveId: string;
    insurancePeriod: ZendriveInsurancePeriod;
    sessionId: string;
    startTimeMillis: number;
    trackingId: string;
}

Information about a drive that was resumed in the Zendrive SDK. This is called after the drive recording resumes after a gap. The gap may occur due to an application restart by the OS, application kill and restart by a user, an application crash etc.

Type declaration

  • driveGapEndTimestampMillis: number

    The end timestamp of the gap in drive recording in millisecs.

  • driveGapStartTimestampMillis: number

    The start timestamp of the gap in drive recording in millisecs.

  • driveId: string

    An identifier for this drive that was resumed.

  • insurancePeriod: ZendriveInsurancePeriod

    The insurance period in which the drive was detected.

  • sessionId: string

    Session id is specified by the enclosing application when it wants to record a session.

  • startTimeMillis: number

    The start timestamp of the drive in milliseconds since epoch.

  • trackingId: string

    Tracking id is specified by the enclosing application when it wants to start a drive manually.