Module Opentelemetry_core.Value

type t = [
  1. | `Int of int
  2. | `String of string
  3. | `Bool of bool
  4. | `Float of float
  5. | `None
]

A value in a key/value attribute

val conv : [< `Bool of bool | `Float of float | `Int of int | `None | `String of string ] -> Opentelemetry_core.Common_.Proto.Common.any_value option