BugseeErrorReporterConfig

data class BugseeErrorReporterConfig(    val apiKey: String,     val optionsMap: HashMap<String, Any>,     val attributesMap: Map<String, Any?>)

Contains all the necessary parameters for configuring the Bugsee SDK.

Parameters

apiKey

A Bugsee application token which is used to identify the app in the Bugsee dashboard. You can get this token from the Bugsee dashboard; see Bugsee documentation about initialization of the SDK.

optionsMap

Additional parameters used to configure Bugsee SDK. See the Bugsee documentation about launching with options.

attributesMap

Custom data which is sent together with the error report. See the Bugsee documentation about User/Session attributes.

Constructors

Link copied to clipboard
fun BugseeErrorReporterConfig(    apiKey: String,     optionsMap: HashMap<String, Any>,     attributesMap: Map<String, Any?>)

Properties

Link copied to clipboard
val apiKey: String
Link copied to clipboard
val attributesMap: Map<String, Any?>
Link copied to clipboard
val optionsMap: HashMap<String, Any>