Module Values.DocumentAclGroupSource

Represents a group in the document's ACL, used to define access permissions for multiple users collectively.

Sourcetype nonrec t = {
  1. name : GroupName.t option;
    (*

    The name of the group in the document's ACL. This is used to identify the group when applying access rules.

    *)
  2. type_ : MembershipType.t option;
    (*

    The type of the group. This indicates the scope of the group's applicability in access control.

    *)
}
Sourceval make : ?name:??? -> ?type_:??? -> 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