Module Values.AnnotationValueSource

Value of a segment annotation. Has one of three value types: Number, Boolean, or String.

Sourcetype nonrec t = {
  1. numberValue : NullableDouble.t option;
    (*

    Value for a Number annotation.

    *)
  2. booleanValue : NullableBoolean.t option;
    (*

    Value for a Boolean annotation.

    *)
  3. stringValue : String_.t option;
    (*

    Value for a String annotation.

    *)
}
Sourceval make : ?numberValue:??? -> ?booleanValue:??? -> ?stringValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of NullableBoolean.t | `Double of NullableDouble.t | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t