AXValue

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

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

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?

The computed value of this property.