CodeFlow

@JsonClass(generateAdapter = true)
data class CodeFlow(@Json(name = "message") val message: Message? = null, @Json(name = "properties") val properties: PropertyBag? = null, @Json(name = "threadFlows") val threadFlows: List<ThreadFlow>)(source)

A set of threadFlows which together describe a pattern of code execution relevant to detecting a result.

Since

0.12.0

Constructors

Link copied to clipboard
constructor(@Json(name = "message") message: Message? = null, @Json(name = "properties") properties: PropertyBag? = null, @Json(name = "threadFlows") threadFlows: List<ThreadFlow>)

Properties

Link copied to clipboard
val message: Message? = null

A message relevant to the code flow.

Link copied to clipboard
val properties: PropertyBag? = null

Key/value pairs that provide additional information about the code flow.

Link copied to clipboard

An array of one or more unique threadFlow objects, each of which describes the progress of a program through a thread of execution.