Module Values.BeardSource

Indicates whether or not the face has a beard, and the confidence level in the determination.

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

    Boolean value that indicates whether the face has beard or not.

    *)
  2. confidence : Percent.t option;
    (*

    Level of confidence in the determination.

    *)
}
Sourceval make : ?value:??? -> ?confidence:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Float of Percent.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