Module Values.UserSource

Metadata of the user stored in a collection.

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

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

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

    Communicates if the UserID has been updated with latest set of faces to be associated with the UserID.

    *)
}
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