Module Values.MatchedUserSource

Contains metadata for a UserID matched with a given face.

Sourcetype nonrec t = {
  1. userId : UserId.t option;
    (*

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

    *)
  2. userStatus : UserStatus.t option;
    (*

    The status of the user matched to a provided FaceID.

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