AXValue

@Serializable
data class AXValue(val type: AXValueType, val value: JsonElement? = null, val relatedNodes: List<AXRelatedNode>? = null, val sources: List<AXValueSource>? = null)(source)

A single computed AX property.

Official doc

Constructors

Link copied to clipboard
constructor(type: AXValueType, value: JsonElement? = null, relatedNodes: List<AXRelatedNode>? = null, sources: List<AXValueSource>? = null)

Properties

Link copied to clipboard

One or more related nodes, if applicable.

Link copied to clipboard
val sources: List<AXValueSource>? = null

The sources which contributed to the computation of this property.

Link copied to clipboard

The type of this value.

Link copied to clipboard
val value: JsonElement? = null

The computed value of this property.