Values.PrincipalSourceProvides user and group information for user context filtering.
type nonrec t = {name : PrincipalName.t;The name of the user or group.
*)type_ : PrincipalType.t;The type of principal.
*)access : ReadAccessType.t;Whether to allow or deny document access to the principal.
*)dataSourceId : DataSourceId.t option;The identifier of the data source the principal should access documents from.
*)}val make :
?dataSourceId:??? ->
name:PrincipalName.t ->
type_:PrincipalType.t ->
access:ReadAccessType.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of PrincipalName.t ]) list ]