Module Values.GroupSummarySource

A structure containing a subset of fields of a group object from a directory.

Sourcetype nonrec t = {
  1. groupScope : GroupScope.t option;
    (*

    The scope of the AD group. For details, see Active Directory security groups.

    *)
  2. groupType : GroupType.t option;
    (*

    The AD group type. For details, see Active Directory security group type.

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

    The name of the group.

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

    The unique security identifier (SID) of the group.

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