VehicleCrashDetectionFeedback
This class is used for submitting feedback about a vehicle crash to the Sentiance SDK. See submitVehicleCrashDetectionFeedback.
VehicleCrashDetectionFeedback API
crash()
crash()Creates feedback for a vehicle crash that occurred on the specified date, with an optional crash location. Use this to report crashes that either were or were not detected by the Sentiance SDK.
Returns a VehicleCrashDetectionFeedback instance with the provided input.
static func crash(
crashDate: Date,
wasCrashDetectedBySentiance: Bool,
crashLocation: CLLocationCoordinate2D? = nil
) -> VehicleCrashDetectionFeedbackcrashDate
The date of the crash event reported by the Sentiance SDK, or if a crash was not detected, the date of the actual crash.
wasCrashDetectedBySentiance
Whether the Sentiance SDK detected and reported the crash.
crashLocation
The location where the crash happened.
noCrash()
noCrash()Creates feedback indicating that no crash occurred for a crash event reported by the Sentiance SDK. Use this to report false positives when the SDK incorrectly detected a vehicle crash.
Returns a VehicleCrashDetectionFeedback instance with the provided input.
static func noCrash(eventDate: Date) -> VehicleCrashDetectionFeedbackeventDate
The date of the crash event reported by the Sentiance SDK.
crashLocation
crashLocationThe location where the crash happened if it was provided to crash(). Otherwise, returns null.
let wasRealCrash: BooleventDate
eventDateThe eventDate provided to noCrash(), or the crashDate provided to crash().
let eventDate: DatewasCrashDetectedBySentiance
wasCrashDetectedBySentianceWhether the Sentiance SDK detected and reported the crash.
let wasCrashDetectedBySentiance: BoolwasRealCrash
wasRealCrashWhether a crash occurred on the specified eventDate.
let wasRealCrash: BoolLast updated