FairEmail/app/src/main/java/com/bugsnag/android/Telemetry.kt

17 lines
351 B
Kotlin
Raw Normal View History

2022-06-23 18:23:15 +00:00
package com.bugsnag.android
/**
* Types of telemetry that may be sent to Bugsnag for product improvement purposes.
*/
enum class Telemetry {
/**
* Errors within the Bugsnag SDK.
*/
INTERNAL_ERRORS;
internal companion object {
fun fromString(str: String) = values().find { it.name == str } ?: INTERNAL_ERRORS
}
}