Module Values.DocumentAclConditionSource

Represents a condition in the document's ACL, specifying access rules for users and groups.

Sourcetype nonrec t = {
  1. memberRelation : MemberRelation.t option;
    (*

    The logical relation between members in the condition, determining how multiple user or group conditions are combined.

    *)
  2. users : DocumentAclUsers.t option;
    (*

    An array of user identifiers that this condition applies to. Users listed here are subject to the access rule defined by this condition.

    *)
  3. groups : DocumentAclGroups.t option;
    (*

    An array of group identifiers that this condition applies to. Groups listed here are subject to the access rule defined by this condition.

    *)
}
Sourceval make : ?memberRelation:??? -> ?users:??? -> ?groups:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of String_.t ]) list ] list ]) 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