Module Values.AcceptChoiceSource

Specifies the prediction (aka, the automatically generated piece of metadata) and the target (for example, a column name) that can be accepted.

Sourcetype nonrec t = {
  1. predictionTarget : String_.t;
    (*

    Specifies the target (for example, a column name) where a prediction can be accepted.

    *)
  2. predictionChoice : Integer.t option;
    (*

    Specifies the prediction (aka, the automatically generated piece of metadata) that can be accepted.

    *)
  3. editedValue : EditedValue.t option;
    (*

    The edit of the prediction.

    *)
}
Sourceval context_ : string
Sourceval make : ?predictionChoice:??? -> ?editedValue:??? -> predictionTarget:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.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