Module Values.UserSummarySource

A structure containing a subset of the fields of a user object from a directory.

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

    Indicates whether the user account is active.

    *)
  2. givenName : GivenName.t option;
    (*

    The first name of the user.

    *)
  3. sAMAccountName : UserName.t option;
    (*

    The name of the user.

    *)
  4. sID : SID.t option;
    (*

    The unique security identifier (SID) of the user.

    *)
  5. surname : Surname.t option;
    (*

    The last name of the user.

    *)
}
Sourceval make : ?enabled:??? -> ?givenName:??? -> ?sAMAccountName:??? -> ?sID:??? -> ?surname:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of GivenName.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