Module Values.UserSource

A user object that contains identifying information and attributes for a specified user.

Sourcetype nonrec t = {
  1. distinguishedName : DistinguishedName.t option;
    (*

    The distinguished name of the object.

    *)
  2. emailAddress : EmailAddress.t option;
    (*

    The email address of the user.

    *)
  3. enabled : Boolean.t option;
    (*

    Indicates whether the user account is active.

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

    The first name of the user.

    *)
  5. otherAttributes : Attributes.t option;
    (*

    An expression that includes one or more attributes, data types, and values of a user.

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

    The name of the user.

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

    The unique security identifier (SID) of the user.

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

    The last name of the user.

    *)
  9. userPrincipalName : UserPrincipalName.t option;
    (*

    The UPN that is an internet-style login name for a user and based on the internet standard RFC 822. The UPN is shorter than the distinguished name and easier to remember.

    *)
}
Sourceval make : ?distinguishedName:??? -> ?emailAddress:??? -> ?enabled:??? -> ?givenName:??? -> ?otherAttributes:??? -> ?sAMAccountName:??? -> ?sID:??? -> ?surname:??? -> ?userPrincipalName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Map of ([> `String of LdapDisplayName.t ] * [> `Structure of (string * [> `Boolean of BooleanAttributeValue.t | `List of [> `String of StringAttributeValue.t ] list | `Long of NumberAttributeValue.t | `String of StringAttributeValue.t ]) list ]) list | `String of DistinguishedName.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