OtlpAnyValue

@Serializable
data class OtlpAnyValue(val stringValue: String? = null, val boolValue: Boolean? = null, val intValue: Long? = null, val doubleValue: Double? = null)

Polymorphic OTLP attribute value.

Only the populated field should be non-null.

Constructors

Link copied to clipboard
constructor(stringValue: String? = null, boolValue: Boolean? = null, intValue: Long? = null, doubleValue: Double? = null)

Properties

Link copied to clipboard

boolean value, if present.

Link copied to clipboard

double value, if present.

Link copied to clipboard

integer value, if present.

Link copied to clipboard

string value, if present.