Module Values_0.OpsItemDataValueSource

An object that defines the value of the key and its type in the OperationalData map.

Sourcetype nonrec t = {
  1. value : OpsItemDataValueString.t option;
    (*

    The value of the OperationalData key.

    *)
  2. type_ : OpsItemDataType.t option;
    (*

    The type of key-value pair. Valid types include SearchableString and String.

    *)
}
Sourceval make : ?value:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of OpsItemDataValueString.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