Module Values.MemberSource

A member object that contains identifying information for a specified member.

Sourcetype nonrec t = {
  1. memberType : MemberType.t option;
    (*

    The AD type of the member object.

    *)
  2. sAMAccountName : MemberName.t option;
    (*

    The name of the group member.

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

    The unique security identifier (SID) of the group member.

    *)
}
Sourceval make : ?memberType:??? -> ?sAMAccountName:??? -> ?sID:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of MemberName.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