StackFrame

@JsonClass(generateAdapter = true)
data class StackFrame(    @Json(name = "location") val location: Location? = null,     @Json(name = "module") val module: String? = null,     @Json(name = "parameters") val parameters: List<String>? = null,     @Json(name = "properties") val properties: PropertyBag? = null,     @Json(name = "threadId") val threadID: Int? = null)

A function call within a stack trace.

Constructors

Link copied to clipboard
fun StackFrame(    @Json(name = "location") location: Location? = null,     @Json(name = "module") module: String? = null,     @Json(name = "parameters") parameters: List<String>? = null,     @Json(name = "properties") properties: PropertyBag? = null,     @Json(name = "threadId") threadID: Int? = null)

Properties

Link copied to clipboard
val location: Location? = null

The location to which this stack frame refers.

Link copied to clipboard
val module: String? = null

The name of the module that contains the code of this stack frame.

Link copied to clipboard
val parameters: List<String>? = null

The parameters of the call that is executing.

Link copied to clipboard
val properties: PropertyBag? = null

Key/value pairs that provide additional information about the stack frame.

Link copied to clipboard
val threadID: Int? = null

The thread identifier of the stack frame.

Sources

Link copied to clipboard