Module Values.UnsuccessfulFaceDisassociationSource

Contains metadata like FaceId, UserID, and Reasons, for a face that was unsuccessfully disassociated.

Sourcetype nonrec t = {
  1. faceId : FaceId.t option;
    (*

    A unique identifier assigned to the face.

    *)
  2. userId : UserId.t option;
    (*

    A provided ID for the UserID. Unique within the collection.

    *)
  3. reasons : UnsuccessfulFaceDisassociationReasons.t option;
    (*

    The reason why the deletion was unsuccessful.

    *)
}
Sourceval make : ?faceId:??? -> ?userId:??? -> ?reasons:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string ] list | `String of FaceId.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