VehicleCrashDetectionFeedback: {
    crashLocation?: {
        latitude: number;
        longitude: number;
    };
    crashTimeEpoch: number;
    type: "CRASH";
    wasCrashDetectedBySentiance: boolean;
} | {
    eventTimeEpoch: number;
    type: "NO_CRASH";
}

The vehicle crash detection feedback.

Type declaration

  • OptionalcrashLocation?: {
        latitude: number;
        longitude: number;
    }

    The location where the crash happened.

    • latitude: number
    • longitude: number
  • crashTimeEpoch: number

    The epoch time of the crash event reported by the Sentiance SDK.

  • type: "CRASH"

    Indicates that this is feedback for a crash that did occur.

  • wasCrashDetectedBySentiance: boolean

    Whether the Sentiance SDK detected and reported the crash.

Type declaration

  • eventTimeEpoch: number

    The date of the crash event reported by the Sentiance SDK.

  • type: "NO_CRASH"

    Indicates that this is feedback for a crash that did not occur.