Module Values.CoversBodyPartSource

Information about an item of Personal Protective Equipment covering a corresponding body part. For more information, see DetectProtectiveEquipment.

Sourcetype nonrec t = {
  1. confidence : Percent.t option;
    (*

    The confidence that Amazon Rekognition has in the value of Value.

    *)
  2. value : Boolean.t option;
    (*

    True if the PPE covers the corresponding body part, otherwise false.

    *)
}
Sourceval make : ?confidence:??? -> ?value:??? -> 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